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:23235
Vulnerability from csaf_redhat - Published: 2026-06-11 06:06 - Updated: 2026-06-29 12: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.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15.65 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.15.\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.15.65. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:23234\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.15 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.15/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:23235",
"url": "https://access.redhat.com/errata/RHSA-2026:23235"
},
{
"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_23235.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.15.65 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T12:50:43+00:00",
"generator": {
"date": "2026-06-29T12:50:43+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23235",
"initial_release_date": "2026-06-11T06:06:58+00:00",
"revision_history": [
{
"date": "2026-06-11T06:06:58+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-11T06:07:50+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:43+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.15",
"product": {
"name": "Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.15::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:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Aef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779915990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Aec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Afe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779916195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779916995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Ab9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779915738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779915510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779916147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ad800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780458782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780459147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780458749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Abdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780082109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779915764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Ad6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779888571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779916341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Ab64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779915472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3Ad8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779888489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3A32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780283639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779888430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Af017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780082033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779915509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3A4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780081980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779917534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779887535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Ab966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1779915897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3Ac8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ab3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779887558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aa10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779917548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1779916340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Aa0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1779915490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780062525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779916264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3Affacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780082119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3Ad7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779916094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779915884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779916110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779915828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779915561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Afe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779915526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Aed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779915485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Abd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779942993"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779915990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Ad56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ad75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779916195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779916995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Afdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779915738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779915510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779916147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780458782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aa4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780459147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780458749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780082109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779915764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Ac00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779888571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3A4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779916341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3Ab3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779915472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779888489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Ad0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780283639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779888430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780082033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Af713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1779916508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3Aa695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1779915601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779915509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Afc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780081980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779917534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779887535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3Ac47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1779915897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Adee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779887558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ae181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779917548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1779916340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Af12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1779915490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Aa58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780062525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779916264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780082119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779916094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Ac638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779915884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Ad92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779916110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Ab376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779915828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Ae54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779915561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779915526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779915485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Acf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779942993"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1779915990"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Aefc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779916195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779916995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1779915738"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779915510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Add4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Abbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1779916147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780458782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780459147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780458749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3A4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780082109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Add6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779915764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3A785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779888571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3A7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3Ad33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779916341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779915472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3Aa10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779888489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Aeb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780283639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779888430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Afe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780082033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel8@sha256%3Ac5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8\u0026tag=1779916508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel8-operator@sha256%3Aea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator\u0026tag=1779915601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779915509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Ad86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780081980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3Acb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779917534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779887535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8@sha256%3A8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8\u0026tag=1779915897"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel8-operator@sha256%3A387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator\u0026tag=1779915516"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779887558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Aa11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779917548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3A9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1779916340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Aa0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1779915490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3Ac7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780062525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Acd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1779916264"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel8@sha256%3A7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8\u0026tag=1780082119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1779916094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1779915884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1779916110"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1779915828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1779915561"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3Afd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1779915526"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779915485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779942993"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1779915468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Af34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1779916195"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1779916995"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1779915510"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1779915492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3Ac715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780458782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Aa58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780459147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780458749"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel8@sha256%3Aaa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8\u0026tag=1780082109"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1779915764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-operator@sha256%3Afb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-operator\u0026tag=1779888571"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity@sha256%3Ac852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity\u0026tag=1779915475"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy@sha256%3Ab04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy\u0026tag=1779916341"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router@sha256%3A641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router\u0026tag=1779915472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-operator@sha256%3A7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-operator\u0026tag=1779888489"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-sdk-rhel8@sha256%3Af956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8\u0026tag=1780283639"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ae9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1779888430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ad6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780082033"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779915509"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-shared-resource-mustgather-rhel8@sha256%3Aabb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8\u0026tag=1780081980"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy@sha256%3A3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy\u0026tag=1779917534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779887535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1779887558"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1779917548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8@sha256%3Aefc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8\u0026tag=1779916340"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel8-operator@sha256%3Ab95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator\u0026tag=1779915490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel8@sha256%3A660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8\u0026tag=1780062525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1779915485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1779942993"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64 as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.15",
"product_id": "Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.15"
}
]
},
"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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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-11T06:06:58+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.15/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23235"
},
{
"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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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-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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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-11T06:06:58+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.15/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.15/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23235"
},
{
"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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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.15:registry.redhat.io/openshift4/frr-rhel9@sha256:291b51f142433087d9a68c8ebeed772e37af6a54d3254aec4546483f83194b35_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:3328a0675ae2db79afec057009561e1c262eaa358897ad8a054e180297482b62_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:4df2698aa1277101384f263e1a52932cffadf5399df1ac670e94289184950d4e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/frr-rhel9@sha256:ae9fb26083a889158d6ebebc49c93baac3190bb7349fa172a831e0295013bb9b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:162f41708e4582e0159ae794fec9969c35d1d1e8cf30037d45d896b7876b215b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:5818b8345278b815cd0dab3e409606c5b14ae0da8bfc4fadfd28fe7dad8f69c5_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:9b54ca053b72e45af815c08a7833d32bd89266ac0f65b7aa25d3c2a88ea107c1_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:dd4d28880ffd6f422cbc3bc82138b2ff18f075ba3e1b82d9993c648d057e645f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:2976c8097cce2468c476a58d0ca49de48a06f90ff00c7a5546e608bd6adc02ac_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6d5cdf8de9e565ef45226f1acc743358da5c14663a93d5b427c97940eb598c59_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:89fc8976059bb5f50b3950cd7c4625d4c77b630ad784b9c29ce7544de84e611e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:926b8d99005277c95ab7c64758cfe64316f6b94f54fed2892aeef67a44fc9df4_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:446aeff94de90603fb22af76d310aac93ebad334dcc3f6da57f56bc3e587c041_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:d6aca6e75eb464afdb001d6cb7b69c9068e82e1b1defa6dcb1f48e16392a3bd5_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:f017c14d20143d1c0de3c003fb4dfc5b5256d30e2c3954e18d6544fd0f1591f8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:fe53979d7f1454153a4ad56e7e267faf75be5e995c2a4710eadb0eab5b41be9d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:8f567764033b088891642a5bacca1cb291d83b64cdf1e4f840d820f7d3cbe1ee_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a10863101a9a63c08126a63150799e23b315d51268ae927fe7021c7c7ef60f27_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:a11f515530bb260d97b24371ea2e21de404b46a95b222695b8a914eb0942e0ca_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:e181e6c870125af4250b753c7836bbc1a5b4eeaf0ca24100ff2cd6636ec68a3e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:01114ee04a38b2d63d4f4d7877cfeb45e3fd72db019ac09657e55eaef82ac3e1_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:8c978d3a39f9fbcff5973ba44c41c4c2bc459f3ab1b0fadddc1ef81f6b190072_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:b3a3458c99efac27e7db18d16fe8587b98215795c322c24d721403da5d820818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/metallb-rhel9@sha256:dee09d94717c386691d2a1cad966eccc6b4e695f9a7aaf5e831908912cd07b4c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:17ee5262a2f32a842d902d6558c29b9297ae5b07b39eeaaae890421f32f7d653_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:4ee52748f05d501ce0315ed4e5b72c0df290e2221213c5af1ac6f6666cfcb3a5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:aa2d907596b9b5cf15e6d4f0b6edb26be0e5f09547fa869d59e525a3e64a2b95_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/nmstate-console-plugin-rhel8@sha256:bdf9948a90fe6c4f72fae0fabcb1e82aa53f25c16ace20bfa1a67ba400a53db5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:785bf6b208680c589939dabd27f0d67f9ff94e1dde3cac6000d63f3dc29df33a_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:c00b726342441e31a93a316cd886b5d6fa6cfb133f59f0b2ae5c39000dd4886d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:d6dcfa7681a062b390ccc18e32bd1a8c8ba7c6a73ce204726fa01b8a7393a9b7_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ansible-operator@sha256:fb12144250fc6d3ea613357cbcf56caeffe9236a7736e6db4116cac1b789af8c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:c5f699dd86eb69e7b400e6fa9c3b87e03877e16b8327df647929891b6a015693_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:f713e0b404c9ff34d5d022d4799da11873249450b55809513000d4b375708342_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:a695422b19a3d29a2b4ede64f9eb045f02bbcf3b246c0494aec9bef0fc961b2d_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:ea048908f75345d2dd2e770c94987db6c4cb865d7ced0064089ef22743841397_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:20c539cc9f56e35c23da05fdc8c7d1334b5ef340077c8b6d3560bad4e92a00f1_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:247378f05337f5914840cff744da117f5e6b6d1377f69a4c6ab66c2752e1fa4b_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:5acd334985679476cfa6827fcc89f00fc89e4c409de2f06d4284e1cbe9a3624c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:910679c50655521d2e955bdf0f6413016af80a1c705c9f2e6e02f1ec1f44d31c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:2c00297c567711c713ad3020a258150a55c8db2206ef35ffabf177a2f579c586_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:9ec6d1351cc277ff1fc3d264fa896bc03e54297c1817e933f6c97946f6c3e108_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:ef377efe3db560e6ddd466bc0e3c6e9fe8476aefef42c093f09682fb9e8981e4_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:0cc0282d802bc9af9d66b0cc0f87e28e27199ad3b18eeff2bd726355ca71443e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:7bfb0df1f28e9fc579a70182d185425c4f077738a9d238bdcfc4f06615e7e825_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:8ee4532c139dcefc590b8188456a5f59528730d63fbc72075946e2139ae631ad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-capacity@sha256:c852bc159ad836b50dc6e616d72446632bfe939a89e6efceec08c6b99362bf1c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:51364e22aecbb710acee25f374397d95f5395ca3c9c86128716b9b6522fc7035_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7cac6c4f530b4c27d0c9fea7ad5e6e39e8fe07bac432ac4714292251b47f8e3b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:d56ef6bd87903015a314557bb15e8b89d2e78c20b51354458d43f897a99a76cd_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:ec9c17f297cf783b03d97e0ae4b9e114dbba1ae1681a2c5dc2d22d1bc1b5da4d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1c18b0dc1d67f764a6feac82dc5f0104e6c5535fc4ad2c40923cb48529e6ca25_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:1e5a06fef06f3a45dd71fe6d57dbae99204ca9a6582d31eddb45eb820ff96aab_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:5a88db2180d0d8357dddd959e3a519e1b71f2d2efd236f1b9ddb2d8ece90fb4f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9cc05976b20d32a1e0ece5827c5a8cfa08ae29a54f49ffd4bc42c4180a3e420c_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:d75fed110fdc9cc355dea19d6db8cfbf159c22580427a394d6ab4fbb770beb15_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:efc2708d61193cc4cc753a1ff3a2600b5c3872f687b2d1f47c350a025556c873_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f34dd1618b14072287db1b404bea782cc0e0f657f4d7d96859fdd831f59b4489_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:fe7d7b1dca8792f5d81cdb9e635cff1a2aa2159a2501c5d1ea1cb5f165bb5cda_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:4a5c9f2b5743d2b9564a4408f8b8a20e1cc1be2dee4ce77c5205545a2656d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:abb512398117418cfff56ce361aaf6ddf373ff1bb37923ba240f336f200a8c44_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:d86d8f49b54887e31bef8132e5d01a2ff0f42cc1086afceabacdbce23b911070_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:fc6e955cdf0e78fc2496b71b10cabc33575f9f6532cf137a88cb7fd4ef7bdd12_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4bf40c31c7db42c767c1bd01f34a59c41693d93f8cd3cf5d6eca6e21a4af8448_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:4d649d4bff5c2c8d0b94d8f97b3bf2b6a16d7a0bae108f3db241b76476df5451_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:b04f0bbb50152c39aed33439899d7a82b66dbeded447592e6781fb2368848036_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-dns-proxy@sha256:d33fbbd906c7dfb978ab4bc7791f88cb62d8a93d4a0057ac832f96260b119ac0_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:23bf3ebfcbd52d6b9f876b90e2681d05d469f902f35f89c89399ebf59a18c818_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:3ea41fb875b3810356430885375f2a4b262f9a5947cde346ad359f099e49b05f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:7d6fcd0184488fc8259a70f93ecf15185b31f8e4560bee3e22cd35c82cf479e8_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-http-proxy@sha256:cb381ac5fe5d0d95935f481c03f6d26e53e667bc8d4e3cd2d301ec9fdff89944_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:641d0bdb5cd604bcdec8b32a7c166888b82cba8a248ba3912aa61391050ff12a_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:91022c9c26601a4b64b78be11ea8efa09d29fad8ef74b2f625ac1c1cbeb8bc08_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b3ec369f7972bec489dfa5139e35e7141805982ca6dc89a7e3f99b9d6a23dc04_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-egress-router@sha256:b64fb86134b86349392a106b570bea1e6fc79e6a56a58c3fbf8b98282198ebe8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0bb1714177f8aa3a7f773c291745140535e9251f5c840ca7de4d88d830dbebdf_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:387867da06b841a3e3a11074f9dd80fd428e635d6ce0034a5d00fadeadf095bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c8ac965c796619d93422d106baa0ca55abd31e400feebcc71d76ef4741bc0434_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d33535375f98f5c56b850a8e3a35bd9c7c74dc10abe0065de294c4e22abfb7f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:b966e6a3109b7586d55a8055f69adcbbf5aaa041503d5164371a289d84e5aa41_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:c47212e1b7806fdca3b3d0a063158ff537c51ee30e657a14708f1ee071936188_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:56b218cf59d09916734a1f306585fafdf4717baad5fa96c9393ba85e9441664a_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:7cd82ce95b878483934f520f5d616294f7232c25c8a5e183b4bf3c1d7532b83f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:a10fff36c1024a908a98d4f31cc72711a8d9eb8a8a51944fe5ca2eadd0dd4226_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-helm-operator@sha256:d8d67f6ba9efe67e7568dc962ce8db3b664e6c2a27b31bb2fa9a4179fd2515ec_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:38f9abf7774536383f3e8c99dfc3e32f4206c41837aacd581d0e93e26d8a61fd_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:5d6800a82107ccda8ccc5a0189f87198df2663904d12d17376a4440d0ed17807_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:9a29c12b31c4128c1582fb4a1fe563755f018919e866fc8e7aa653014e21b058_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:e9ccc3d61bf34078ceb1b43f996f8f4bc66390e00a78437219cb0cc7bb0f7e91_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:18216ebaeae0426b7bcb077981db25baea3123bad32a42790c3cc37d7451b77d_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:4b7ac561feaebc72f2367cfbca15f7940cbb08d61146a5b91ed337175265a113_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:c715470dd6eebb903acc3237e2697394ddd17f21ad61c2deb68ca5f9076c1210_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:d800be636f49b50e277baf5dfa33d6862dd245921fc466fed383e2f27fd291f1_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:3c295d84562c65c8fd7a719982616165b13b354ff8b14202e8793390c7ef6bad_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:73dd9e94485110fcf6959369954fedc2f90b9d625b098c2afeddc07b8f623ef6_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a4c2601601b54a6108b118c505a510ec09737d834276c71c3e9cd134390ce12e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:a58d7df52405238bc1b812eefbb1449efe4f48eea73d07ef97242929ae89e0b8_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:0044b6cc0124ea07f90897a56383c117639ad914b769b65a52964869bd66349e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:032f5b3e93b461c9832ebf893ff207e9435c8b63cc1cd9c8bfb6892a442ff75f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:4e2d9f38ff713c22ee5a110ebf8dbd7a6e8e0fdd8e073db09c4d29bfbfb0d2d9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:8c041dadc0a911af2a47ce500b882798fe6abc75a10ecf770c6471f7bc73936b_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:1d96022c39360a11cb50ee0d80756b53311a3a9b3684b641b260ff1433d58f07_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:3916bd485b41958debb2061f0e23b8c1506517923e34fe7e1dc939c13065509f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:45a189001a07473dbe6f9a6b69b25f35bd0d2dc70f906df0b7df7e465e0e9796_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:dd6a46b10a54482c5a1f31b4de1de495dc02a72b8bb115f3dfb25e494ecddaa2_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:32db8de07d4867bea45d6d48e8b43a01b262d06bf75e0644f8d4fd3f5c10dcbd_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:d0ce9dbe2e4e4a1c76732c63832ff3e577026adda71517f37f0933441bf6f0ab_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:eb0d7a2791486d3d6f3aa5c532a2d1427dc1c5740318e4cd3345dd7abb37fb4e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-operator-sdk-rhel8@sha256:f956eeaa238cf4c56744e5209bd821c4272474d6cddce6dbe74f3355494ebefe_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3e9c64bab5210ecb56a3930fd926f0dbc55bc5c955b9cc6fecfee0409110c96f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:9ca6139e7b6e15080e9149a6f3b497673b2affe86d6ba2f00a1e8a53fcf5698e_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:cd6910f785500fdd6cd10724c5626ee31d2079502c382bb36ada9926c6c9a120_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:03c4a5dde5604fee60e75b0324572d28855cfa57f120b3e678d3eb7f3ad4cb22_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:0b599f1470df8e3a8a695793bcf7edae1150fec7e05dd2111b3a926697d56e53_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bbc190f19dca8799aff49578823a6b34280bdc8083faf4b4994942966f120a43_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0c911890a88e3fd66e7032ec124e81dede82c9073d37272faccf21035345664_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:a0cf21c32ddcfd149415ec08377b0def18c243211e4be996f78da85952103d2c_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:b95ed20958e794687ec9222b32270bcfc85cb72d878ad92e03aa5dc995b4e600_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:f12358bc4bbdbef2108b7915a29f9f72f3f54623ade6f20cc2d1670d22a0cb03_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:32904ba36b6bb51a3bf8211b9c57f3f7aad90d33c73c8f5befeeb8f9fc958f6c_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:808a10cf4119f2954062c2dbf894f58108984494da50960006185ea9fa6c34d5_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:9cb54d131b4b7c043903bbb400dca46e909a4036ef5bef3d34d6246153c481d5_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8@sha256:efc67545f3a59c51bbb9ea945d7d695c1857183ee95a65b6ca0c88bbdb472299_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:660264d4bf6763c782d4d8a2c121338dc88f549a0e3a9c1259628f5c0a405f6f_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:97e08eed4a56828d10b4160ebc70015ae2c247a7e0c03e33fd49a264eedcc69d_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:a58f93c956c8b8d1e15e6d2a19de7e7ae41705d334f74605b2eab20e33cb45a9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:c7a4ea792bd4b5ed2ac2b4ab37f9381f40f349fceb79b9e93b51ecab7d33360b_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:2c2c81b011c816ecfae37abd6b4721e6c0678faf7a1e931cedc5873376a49efa_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:66d8c77dfdbfaa1113a200490f390c93a932b90ea13f68d663b83609280bf63f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:c638a99bfac9e5693634ac6c2fd04af8207882b6546b5ae8721cca8205b9b62f_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9d22722b5a9a80bcdc6f0cc887de1432cec5b6fccb0480721b2450a576a42c98_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:b9047f6f27c4a472d1d772f11c465d1e0a52dfb17563b199259b7f6f35755097_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:fdb635230b9474360212f4ff9d65b08da2d5ae7393db7e1446807e36b22e6b81_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:30e24d9f744be4d729bc3e443a31a945eb952531b29b1b4057dbf41fc4d1849f_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:6adbeab62ab14ff659200361a7fac436216f942f782764734fabf664febfd375_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:d92df363d5768e050581aae80395134dd6faae75d476bc28b40f6ec53ae5aee0_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:892d97b7c4dbbf202501e241d79a649025017110b00b8fc14c8c1f7997e8bcc4_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:90726fcf9c62e9c723f5f108b6e1fcb55c1b94b5ddcc109874639fcb9531aee8_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:b376e3a380042c578a5cd0b2dfe1036c3cc0bf0e8a23cf3096793150c30fd749_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:08409b71472330b107a00663e6198372bb08f444dc1c3ba703b3cfe33314a5fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:6367e1811ab013dbe08da56d86b90af5471113319825be8b289fa00d2df1648c_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:e54653c5d6109045c8029856d6928ab2de31224588a16a97313d5bc79c0aa7f9_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:8ec44c793e1c8958f19356911ee75a3bf4907b51ead67a7438755d3fcacc28cc_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fd421ab96bef13ae969bc234efac92e5766ccf2060a9576b0ccae5918519ed05_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:fe608164b671e81fd87943a1b520ce4bf3d184ab724ff6fa517fb6d4cbbc68fa_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:150bf5e2b4567776482733c5db730a84e8a9cbdf2636f17e8c86bfc69ea9cdb9_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:25bab0c0fc67f7c94bc636e13becb21e00ee54c67571bce6fd072ea81c8b3344_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:bd6ef3b69a21c4d8690201c1aecaab15fc977968626437f70ef2b1742a1d6a3f_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:cf2828ad55a05251e8841f1c7854425ffe5cdee7f73c85e0004ba1834af79fba_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:1ca27f4805776b4117e858d7a928e91736fa1753abccae3d06c7d43713bc408e_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5c6cdabd936f20e5990568bd04d19e1f179499f78a365e78f38143206f328ea3_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:5e05d1243ac88fe5ab770d95e1f365fbb120d128b847c136052a453252cbdfcf_s390x",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:ed83236e1c16786da2d8951e8ead3d2ee078d9b8fdd75d2d26956bb75c12dddf_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:5fe63439a0d097634affe0e0ab52758166b9423771770a572b6727f8c4701ae2_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:7eba3d33c0a7e22acdfa306310f06b7f19803e5fdd1f084d48f3f26d0c6789ea_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/ptp-must-gather-rhel8@sha256:ffacdbb5b46211625414147810f789fea124666ae2cad504acbd30869534c7a9_ppc64le",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:6530e658dca1bce45b6927f098e9535f0a9f24d2cfe6ed051bc4563f3a31a8db_arm64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:9736b543177d951bfeddd11d2d8f0da72af1113ed5b592f76d9e742c912639bf_amd64",
"Red Hat OpenShift Container Platform 4.15:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:d7fb0212c31463ddbedc4cfcfdc3169db2e1761c6df7c40c15cce106640195ab_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:23241
Vulnerability from csaf_redhat - Published: 2026-06-11 09:02 - Updated: 2026-06-29 12: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.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_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:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_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:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_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:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_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:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_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:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_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:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_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:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_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:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_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:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_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:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_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:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_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:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_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:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_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:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_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:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_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:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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.19 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.19. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:23239\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:23241",
"url": "https://access.redhat.com/errata/RHSA-2026:23241"
},
{
"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/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_23241.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21.19 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:47+00:00",
"generator": {
"date": "2026-06-29T12:50:47+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23241",
"initial_release_date": "2026-06-11T09:02:17+00:00",
"revision_history": [
{
"date": "2026-06-11T09:02:17+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-11T09:03:55+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:47+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-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-ui-rhel9@sha256%3A6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9\u0026tag=1780467924"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Ad273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Ac8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779777171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779889055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ad182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780037902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780321752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ac1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Add22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ae257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Aac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779776742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779889102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Afee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779777764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ace7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Acdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aa85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780060333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ac7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ae5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Ae012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Af6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779911196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780054338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ad6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780473038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aa80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780402633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Ace7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aa973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780467820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ad863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Ab13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780459518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780410233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ab296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Aa1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780056704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ae64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780459662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779880895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780078534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780057798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780474448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Af8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ad3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ab5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ae0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3Aad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779889132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Aa281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Ac85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Aa28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779889093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Adad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Acd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780060554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780078717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Af0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780402732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Afe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780437317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Abe60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780444348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ac26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Afa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ad74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aa8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Afc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780056652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ad42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Af1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779776484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779777152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ac6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779777478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Ac1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Af208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780060677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Af121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ad6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Ab70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Abf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780472860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780064788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780458436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Af33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780474344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1779775851"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3A74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1779775751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aa9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ad942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779889094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Acca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780060375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779777381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Ac1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779777296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Ad133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Aad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ad8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Af04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780472827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1779775695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1779775734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ad66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1779775734"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1779775811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1779775818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ab2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Acf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ab1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ad781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1779775754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3Aed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1779775796"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Acdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Aa70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1779777171"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1779889055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Abbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780037902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780321752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ab37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Af3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ae368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ab93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780060333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Af43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779911196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Aa948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780054338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1779775737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780473038"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1779775736"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Ad02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780402633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780467820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Afa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Af42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780459518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Acb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780410233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ac58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780056704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780459662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779880895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780078534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780057798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Aa45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780474448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1779775790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ac40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1779775810"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Aff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1779775780"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Aa083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1779889132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1779775761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1779775830"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Ada0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1779775819"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1779775785"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1779775796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1779889093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780060554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ab9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780078717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Abdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780402732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Af0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780437317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ac4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ade0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ac7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780444348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Ab3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ae286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Af00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Acb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aa92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Ad6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Aaf428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780056652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Aadbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1779775707"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Ab7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780060677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aacfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ac6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1779775794"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Afa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1779775784"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ad727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Af82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780472860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780064788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Adf22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780458436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aeb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780474344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Aaa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Af62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Acebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779889094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Af7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780060375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Acc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Abb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780472827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ae8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ad3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ac0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Aeafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Afeb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780037902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Aba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780321752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3A1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Abcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Aac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780060333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779911196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aaf6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ac95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Acffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780402633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Aa60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780467820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780459518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Abb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780410233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Aca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780056704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780459662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779880895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780078534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780057798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ac3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780474448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3Aa9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Ac8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ad10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ac615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ae4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780060554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780078717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780402732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Aba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Ae2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Ae014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aa73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780437317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aa5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Abe3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Ab1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780444348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Adc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780056652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ac317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Aa51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1779776985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Aa3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1779776484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1779777152"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3Ae9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1779777478"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ae68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780060677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Acb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ae8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780472860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780064788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780458436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Acd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780474344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ae71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Acd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3Aa59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779889094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780060375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ac5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780472827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aaac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Abcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1779781448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1779784721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1779778278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1779776555"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1779776770"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1779782060"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780037902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Afb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1779783635"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ae1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1779784333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780321752"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1779776015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1779784542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1779784691"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ac0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1779776288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aa00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1779780354"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ac3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1779776372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1779784655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Ad9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1779776742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Ad16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1779889102"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1779777764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshot-metadata-rhel9@sha256%3Ac54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9\u0026tag=1779784796"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1779777863"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1779776599"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1779777909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Aee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780060333"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1779779035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1779783726"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Aa2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1779779969"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1779777706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Abdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1779777106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Adae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1779777652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1779911196"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1779776051"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1779776743"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780402633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3Aa9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1779777490"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Adf5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780467820"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1779776678"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1779784687"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1779776098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780459518"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1779775831"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780410233"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1779784716"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780056704"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780459662"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Aa3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1779880895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Ae9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780078534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Afed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473710"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780057798"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1779777375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ae0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1779778997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aadd6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1779777983"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ab79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780474448"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ac4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1779784756"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1779783715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1779784492"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1779780147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1779776613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aaca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779776247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Af6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1779781792"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Af7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1779776378"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1779779775"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Aa49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1779783123"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1779779588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1779776655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Aa4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1779782918"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780060554"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1779775783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780078717"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780402732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1779776133"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Af4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1779780307"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1779780131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Aaa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1779778957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1779779412"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1779778535"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1779781037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1779780444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aabca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780437317"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1779781660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ad34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1779783609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Acdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1779784790"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1779782783"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1779783875"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780444348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1779777137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1779784811"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3Ae540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1779779932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Af28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1779780205"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1779779132"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Aec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1779777853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1779776517"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1779778829"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aa48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1779783585"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Aea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1779784280"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Abbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1779784370"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ac1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1779777904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1779777902"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1779783764"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780056652"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1779777945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1779777247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1779775981"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Ac6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1779776041"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1779802083"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1779777926"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1779802466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1779784375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1779784113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780060677"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Adc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1779784912"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1779783745"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1779780522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1779783466"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ab76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1779775898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1779844282"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1779776612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1779779424"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Acbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780472860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780064788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1779782762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1779780989"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ab626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1779784497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780458436"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1779780052"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1779784471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780474344"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1779782192"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aa07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1779778069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1779778540"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1779779910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Af2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1779777411"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aa5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1779782088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1779889094"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1779783458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1779781544"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Aa807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780060375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Ab301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1779777381"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1779777296"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780078331"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3Aeea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1779776556"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1779782216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1779778522"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780472827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1779782404"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1779776107"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1779780348"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1779777835"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Abd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1779778414"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ae2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1779784207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1779778457"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product_id": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/volume-data-source-validator-rhel9@sha256%3A44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/volume-data-source-validator-rhel9\u0026tag=1779784279"
}
}
}
],
"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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_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-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_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:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_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:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_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:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_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:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_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:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_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-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_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:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_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:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_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:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_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-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_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:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_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:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_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:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_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:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_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:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_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-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_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:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_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:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_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:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_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:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_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:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_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:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_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:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_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:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_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:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_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:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_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:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_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-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_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:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_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:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_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:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_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:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_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:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"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:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_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:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_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:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_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:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"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:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_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:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_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:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_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:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"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:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_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:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_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:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_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:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_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:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_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:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_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:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_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:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_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:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_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:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"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:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_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:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_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:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_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:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_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:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_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:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_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:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_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:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_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:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_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:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_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:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_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:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_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:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_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:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"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:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_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:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_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:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_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:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_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:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_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:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_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:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_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:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_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:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_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:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_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-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_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:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_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:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_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:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_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:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_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:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_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:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_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:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_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-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_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:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"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:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_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:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_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:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_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:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_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:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_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:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_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:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_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:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_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:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_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:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_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:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_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:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_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:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_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:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_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:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_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:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_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:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_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:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_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:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_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:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"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:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_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:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_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:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_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:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"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:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_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:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_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:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_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:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"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:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_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:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_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:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_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:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_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:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_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:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_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:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_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:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"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:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_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:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_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:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_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:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_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:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_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:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_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:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_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:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_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:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_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:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_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:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_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:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_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-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_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:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_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-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_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:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_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:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_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:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_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:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_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:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_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:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_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:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_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:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_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:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_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:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_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:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_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:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_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:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_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:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_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:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_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:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_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:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_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-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_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:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_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:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_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:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_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:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_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:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_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:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_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:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_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-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_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:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_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:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_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:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_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-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_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:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_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:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_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:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_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:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_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:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_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:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_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:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_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:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_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:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_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:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_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:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_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-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_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:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_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:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_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:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_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:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_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:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_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:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_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:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_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:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_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:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_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:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_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:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_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:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_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:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_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:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_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:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_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-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_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:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_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:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_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:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_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:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_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:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_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:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_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:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_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:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_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:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_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:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_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:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_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:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_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:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_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:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_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:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_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:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_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:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_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:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_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:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_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:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_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:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_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-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_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:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_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:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_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:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_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:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_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:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_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:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_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:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_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:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_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:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_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:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_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:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_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:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_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:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_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-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_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:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_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:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_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:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_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:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_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:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_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:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_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:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_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:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_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:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_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-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_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:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_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:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_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:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_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-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_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:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_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:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_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:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_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:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_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:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_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-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_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:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_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:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_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:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_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:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_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:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_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-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_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:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_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:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_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:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_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:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_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:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_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:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_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:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_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:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_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:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_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:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_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:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_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:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_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:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_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:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_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:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_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:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_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:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_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:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_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:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_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:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_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:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_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-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_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:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_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:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_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:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_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:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_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:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_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-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_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:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_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-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_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:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_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:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_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:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_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:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_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:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_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-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_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:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_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:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_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:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_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-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_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:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_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:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_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:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_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-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_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:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_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:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_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:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_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:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_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:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_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-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_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:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_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:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_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:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_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:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_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:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_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:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_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:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_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:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_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:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_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:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_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:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_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-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_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:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_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:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_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:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_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:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_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:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_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:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_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:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_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:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_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:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_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:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_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:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_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@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_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:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_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:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_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:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_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:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_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:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_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:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_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:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_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-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_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:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_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:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_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:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_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:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_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:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_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-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_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:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_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:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_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:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_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:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_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:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_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:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_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:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_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:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_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:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_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:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_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:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_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-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_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:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_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:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_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:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_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:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_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:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_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-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_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:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_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:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_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:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_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:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_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:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_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:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_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:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_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:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_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:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_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:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_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:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_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-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_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:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_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:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_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:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_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:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_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:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_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:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_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:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_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:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_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:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_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:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_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:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_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:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_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:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_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:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_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:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_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:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_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:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_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-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_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:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_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:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_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:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_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:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_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:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_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:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_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:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_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-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_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:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_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:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_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:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_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:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_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:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_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:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_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:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_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:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_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:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_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:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_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:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_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:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_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:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_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:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_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:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_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:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_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:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_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:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_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:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_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:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_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:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_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:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_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:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_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-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_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:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_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:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_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:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_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:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_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:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_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:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_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:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_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:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_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:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_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-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_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:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_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:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_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:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_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:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_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:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_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:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_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:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_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:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_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:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_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:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_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:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_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:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_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:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_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:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_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:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_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:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_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:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_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-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_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:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_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:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_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:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_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:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_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:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_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-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_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:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_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:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_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:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_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:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_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:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_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:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_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:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_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:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_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:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_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:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_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:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_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:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_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:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_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:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_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:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_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:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_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:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_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:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_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:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_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:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_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:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_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-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_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:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_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:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_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:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_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-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_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:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_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-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_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:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_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:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_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:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_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:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_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:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_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:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_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:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_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:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_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:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_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:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_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:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_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:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_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:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_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:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_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:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_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:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_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:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_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:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_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:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_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:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_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:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_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:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_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:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_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:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_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:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_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-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_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:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_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:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_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:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_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:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_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:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_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:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_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:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_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:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_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:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_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-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_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:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_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:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_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:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_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:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_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:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_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:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_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:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_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-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_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:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_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:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_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:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_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:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_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:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_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:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_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:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_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:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_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:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_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:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_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:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_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:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_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:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_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:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_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:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_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:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_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:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_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:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_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:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_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:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_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:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_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:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_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:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_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:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_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:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_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:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_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:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_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:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_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:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_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-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_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:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_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:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_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:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_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:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_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:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_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:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_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:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_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:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_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:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_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:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_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:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_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:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_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:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_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:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_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:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_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:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_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:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_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:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_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:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_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:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_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:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_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:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_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:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_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:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_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:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_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-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_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:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_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:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_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:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_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:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_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:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_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-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_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:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_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:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_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:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_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-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_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:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_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:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_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:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_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:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_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:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_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@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_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:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_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:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_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:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_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:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_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:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_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:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_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:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_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-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_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:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_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:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_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:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_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:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_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:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_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:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_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:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_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:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_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:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_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:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_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:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_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:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_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:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_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:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_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:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_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:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_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:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_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:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_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:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_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:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_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:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_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:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_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:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_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:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_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:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_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:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_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:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_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:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_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:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_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:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_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:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_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:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_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:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_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:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_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:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_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:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_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:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_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:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_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:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_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-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_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:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_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:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_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:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_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:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_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:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_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-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_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:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_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:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_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:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_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-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_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:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_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:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_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:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_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-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_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:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_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:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_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:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_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:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_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:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_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-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_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:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_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:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_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:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_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-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_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:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_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:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_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:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_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:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_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:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_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:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_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:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_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:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_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:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_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:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_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:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_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:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_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:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_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:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_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:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_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:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_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:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_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:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_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:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_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:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_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:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_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:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_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:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_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-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_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:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_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:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_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:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_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:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_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:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_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:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_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:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_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:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_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:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_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:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_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:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_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-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_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:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_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:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_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:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_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:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_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:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_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:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_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:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_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:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_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:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_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-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_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:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_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:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_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:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_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:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_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:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_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:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_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:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_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:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_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:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_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:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_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:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_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:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_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:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_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:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_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:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_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:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_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:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_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:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_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:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_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:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_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:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_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-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_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:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_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:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_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:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_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:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_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:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_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:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_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:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_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:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_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:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_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:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_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:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_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:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_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:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_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:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_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:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_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:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_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:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_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-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_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:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_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:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_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:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_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:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_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:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_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:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_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:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_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:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_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:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_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:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_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:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_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-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_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:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_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:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_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:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_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:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_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:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_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:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_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:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_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-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_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:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_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-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_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:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_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:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_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:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_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:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_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:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_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-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_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:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_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:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_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:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_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:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_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:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_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:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_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:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_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:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_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:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_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-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_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:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_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:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_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:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_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:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_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:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_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:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_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:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_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:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_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:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_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:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_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:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_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:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_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:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_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:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_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:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_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-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_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:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_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-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_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:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_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-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_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:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_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:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_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:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_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:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_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:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_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:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_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:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_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:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_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:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_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:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_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:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_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:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_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:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_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-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_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:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_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:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_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:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_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:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_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:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_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-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_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:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_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:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_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:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_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:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_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:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_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:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_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:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_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:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_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:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_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:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_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:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_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:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_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:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_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-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_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:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_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:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_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:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_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:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_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:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_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-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_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:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_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:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_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:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_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-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_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:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_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:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_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:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_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:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_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:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_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:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_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:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_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-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_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:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_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:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_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:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_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:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_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:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_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-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_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:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_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-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_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:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_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-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_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:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_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:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_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:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_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:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_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:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_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:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_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:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_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:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_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:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_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:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_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:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_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-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_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:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_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:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_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:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_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:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_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:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_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:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_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:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_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:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_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:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_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-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_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:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_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:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_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:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_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:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_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:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_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:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_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:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_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:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_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:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_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:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_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:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_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:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_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:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_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:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_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:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_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:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_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:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_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:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_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:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_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:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_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:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_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:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_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:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_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:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_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:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_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:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_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:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_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:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_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:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_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-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_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:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_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:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_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:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_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:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_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:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_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-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_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:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_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:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_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:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_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:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_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:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_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:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_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:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_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:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_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:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_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:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_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:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_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:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_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:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_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-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_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:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_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-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_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:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_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:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_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:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_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:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_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:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_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:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_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:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_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:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_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:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_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:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_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:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_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:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_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:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_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:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_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:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_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:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_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:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_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:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_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:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_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-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_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:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_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:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_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:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_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:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_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:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_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:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_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:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_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:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_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:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_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:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_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:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_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-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_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:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_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:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_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:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_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:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_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:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_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:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_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:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_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:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_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:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_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:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_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:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_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:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_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:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_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:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_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:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_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:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_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:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_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:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_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:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_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-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_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:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_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-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_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:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_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:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_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:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_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:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_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:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_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:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_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:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_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:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_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:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_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-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_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:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_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:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_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:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_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:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_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:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_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:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_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:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_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:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_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:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_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:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_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:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_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:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_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:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_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:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_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:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_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:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_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:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_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:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_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:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_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:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_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:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_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-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_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:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_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:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_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:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_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:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_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:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_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:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_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:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_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-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_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:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_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:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_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:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_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:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_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:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_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:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_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:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_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:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_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:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_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-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_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:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_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:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_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:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_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:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_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:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_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:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_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:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_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:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_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:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_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:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_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:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_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:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_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:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_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:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_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:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_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:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_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:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_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:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_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:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_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:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_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:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_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:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_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:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_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:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_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:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_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:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_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:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_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:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_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:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_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:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_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:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_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:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_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:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_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:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_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:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_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:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_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:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_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:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_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:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_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:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_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:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_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:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_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:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_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:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_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:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_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:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_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:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_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:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_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:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_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:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_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:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_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:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_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:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_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:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_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:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_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:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_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:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_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:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_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:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_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:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_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:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_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:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_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:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_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:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_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:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_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-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_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:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_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-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_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:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_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:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_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:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_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:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_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:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_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:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_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:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_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:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_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:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_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:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_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:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_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:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_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:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_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:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_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:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_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:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_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:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_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:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_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:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_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:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_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:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_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:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_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:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_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:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_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:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_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-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_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:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_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:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_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:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_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:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_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:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_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:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_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:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_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:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_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:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_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:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_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:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_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:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_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:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_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:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_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:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_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@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_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:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_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@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_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:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_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-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_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:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_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-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_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:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_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:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_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:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_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:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_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:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_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:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_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:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_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:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_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:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_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:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_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:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_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:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_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:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_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:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_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:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_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:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_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:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_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:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_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:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_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:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_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:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_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:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_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:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_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:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_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:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_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:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_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:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_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-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_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:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_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-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_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:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_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:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_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:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_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:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_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:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_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:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_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:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_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:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_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:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_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:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_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:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_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:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_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:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_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:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_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:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_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:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_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:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_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-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_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:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_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:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_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:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_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:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_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:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_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:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_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:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_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@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_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:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_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:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_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:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_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:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_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:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_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:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_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:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_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:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_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:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_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:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_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:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_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:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_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:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_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:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_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:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_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:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_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:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_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:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_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:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_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:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_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:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_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:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_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:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_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:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_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:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_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:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_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:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_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:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_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:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_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:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_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:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_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-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_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:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_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:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_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:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_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:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_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:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_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:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_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:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_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:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_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:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_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:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_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:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_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-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_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:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_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-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_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:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_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:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_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:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_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:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_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:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_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:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_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:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_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:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_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:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_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:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_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:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_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:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_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:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_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:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_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:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_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:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_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:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_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:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_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:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_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:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_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:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_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:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
}
]
},
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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-11T09:02:17+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:1417c1970881b2a3b8d4baf2bfed9afc8be016ed82a86a2245fe8c683a82ab33\n\n (For s390x architecture)\n The image digest is sha256:713c99f6f70ee1297892c4920860ebbc2dc981e22273bb3a6aace5dcc1e28699\n\n (For ppc64le architecture)\n The image digest is sha256:d35c97623e5b5e1c43a4f27de6946831eaf892584dc25f5675cb0a1800dd418e\n\n (For aarch64 architecture)\n The image digest is sha256:ff686a31f4e7a8d8a495bd4cbc344d35e9cd6a3c09cbd4dae41e12caf8935c3f\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-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23241"
}
],
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_amd64"
]
}
],
"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.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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-11T09:02:17+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:1417c1970881b2a3b8d4baf2bfed9afc8be016ed82a86a2245fe8c683a82ab33\n\n (For s390x architecture)\n The image digest is sha256:713c99f6f70ee1297892c4920860ebbc2dc981e22273bb3a6aace5dcc1e28699\n\n (For ppc64le architecture)\n The image digest is sha256:d35c97623e5b5e1c43a4f27de6946831eaf892584dc25f5675cb0a1800dd418e\n\n (For aarch64 architecture)\n The image digest is sha256:ff686a31f4e7a8d8a495bd4cbc344d35e9cd6a3c09cbd4dae41e12caf8935c3f\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-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23241"
},
{
"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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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-11T09:02:17+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:1417c1970881b2a3b8d4baf2bfed9afc8be016ed82a86a2245fe8c683a82ab33\n\n (For s390x architecture)\n The image digest is sha256:713c99f6f70ee1297892c4920860ebbc2dc981e22273bb3a6aace5dcc1e28699\n\n (For ppc64le architecture)\n The image digest is sha256:d35c97623e5b5e1c43a4f27de6946831eaf892584dc25f5675cb0a1800dd418e\n\n (For aarch64 architecture)\n The image digest is sha256:ff686a31f4e7a8d8a495bd4cbc344d35e9cd6a3c09cbd4dae41e12caf8935c3f\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-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23241"
},
{
"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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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:17408f54d2afb09ca531693b18261add8a827cf7f9afdedc612aec1052e3d59f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:407fa5b3937d7e1bf3ef83a31de963555b2719ee19a45fe4a30bbf04a9d89330_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:cdd5cafb5ba514d34b5396e19464738ea7cb4ba662e183f15c8c3a113cef740f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:eafe6235017eb45baeeaa139d9b709b09a437129372a5045cc8895b28145a58d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1b3314f3c46c86863a6bbd2b1d7bc61a5fbfc634581dfc750c7e0822f16329b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c64e822e5aeb9d63ca880a8143e9bff6b76dd9dc5edbbe8cf43cc5be3a46995_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:594fb9232dd4a3fba648af5741db04a7d102f6ad19cfd276dca191c3af156914_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:c8e891946f9df185a5077172a52f83e55f10c42c95d8f8dc8ce803ca37816fb5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0039d5aa7a97404185e81107bbddb330b1b94ea0c2548f96148d280b3cfc58df_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:0c20b09ff504c526a64bf50e04315dd5f19f718eae6558ec59417208a8c6a1fc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:131d96dbd856b26ea4807801112662a1180bf78921a4e05edbfaeb7f68028be5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:7d0c9884002bf287d4135cb8ba681226d9f6630ac1d3be5b6c2c0f938693b0bb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:12843195f50a7cee51c9a6973e777e69ba31e580271b24b092bafee83b0aa74f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:1b376554df90f4a4d62b28e9b3818eb2e5cc43b4b17d69435946bbd8001cc5e9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:7d8364af051527cd68921ead67e1b6d29a9786771160c7744e9d0a3c4cf32619_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c615e4cac78f1f2b13493a591ecdad03a6cc006c311453c14fc8f6746a68c288_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:102b3c552096616499f77cb1809980ff8e20b1759c96cd1d580348f6f1851068_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:4aa4ea9828f5882549c13a229101eea6bb486bb5ce1592515ba3fa10609a71f0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5c0b9cbc49e33b23c14ba7ba4ae668261e33f0fded127ad7c89f6c84b6c3eb7a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:5fb6ca2d3dceb1e0d963d4916b417c0e15a720b016cfaa3f24ac3cd19d12438b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:27d9c2075a202aa7f2450047b9feb5155324c181a7476f75e1e7b75854b1aef9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:708aafff24a8b5554a34d97b35fcc3960aec93e1ec5be6746623c17c2edc3d2c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:730ba8dac30502f498e8fe0ed140377c4b30c0c6eea99eb69a8a7e22433eefc3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:a00ea252ec5118b50d43ca9ff0ed6044ef538f07c4a9b0334414555aca422de2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:86231cc8acbdb2ccf6be986d998965e9f9d028b2023738b78863a9be202957ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:92b82f0b125bc503b4fd8c2a1b45b2d61fb7e09cad625a34a97640c9b3e4a677_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:b93e4ddaf1968b21fdb3081853f43443f7bc8ed80339dc1325262bb8c4c53687_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:ee524fb5a3cd1b423d006937dc2cf99dc4fefb9892632dd4c9d0452c21a07d05_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:132df2044bcef27893d195cd2c670ff4a6ae70b35440a66fbfeec6b2ab455811_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:21c80f4ba9cd329077d8684647e88dc36b1d8b310d227dc97fd69335bc2697fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:4a57954b7511b1513e6d55b857500d412f2bc24a223b5fb9873de17290f3d0ed_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:c7b4c5a2e4c9f89c6f7f317d85691299f2eebaabb022fc75216343959038850a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:16b80245c33c8158dfda9eca8fc2572d649c4b76fc30ba6f19451c258f6ef74b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:86dca7131895eb2947e1e07e475f8943d488bcc3c7e20668c87e3f89a04e17e6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:c317d9ff76f0eda245f95408fb853707d0b98cc05c905a2511234f215712da89_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/frr-rhel9@sha256:d42f86f45961444977e26ca70573a0b277fe16ec3c0dfb6e7d99f34df5046fd5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:1e7875bfc1198a2e91f8829bf14232412cd307b7d50f3d12be187694103ce1bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:5b181492b033f4d7177ac4d987e1890b29598293cc6005b18b2b1567dfd5b337_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:72c4e0b9329ec83a9ea903db8a8ba557dfba1626f013deea4b08f5b9540bc41c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:c1f577db817eb0bab7212310798c82a95a28fff06ac7cfd946e25452078b0437_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:01d846b8c82d7298ed0d3a97bb3242516bf72e67deb84a4eaed37179e0278794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:351a976f038f02245c4472817bda36d4a3df80380bb9350839bc1606e3820586_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:b7093771600080c44348263c537b171d57902b6643510c2f56b81d581ec87b18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:f208aa15180bd8192666bad540b7f60233c53e4cb6026cf41fec2f345c65d39a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:36325dc6440e5d1dcef8adb74cde956583ff43e07fc69560f9a068092ed5fd7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:95b2c8e4f972d3e8ac66266cdd99108195e6e9f5296fde9881dc553a70670a54_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:acfe2d736fc7e638c72e0de175adaba3652883d1f1477bbb381c33c3e47326ec_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f121f832628a2aac0354f01516f65f13bb028834980966d41db515f33c398ef7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:0cd17b59a84ee9f765db0c6db51dea90ab694c9fe308b8ef746b104dab0681a4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:6558071f0739c687ae769b308da9931e0f8fa9c97d8d507044e215c061585528_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:b76eef49495b33c4ebd9db8d936b8fc5da8573dd29140ed57efb9a097c05c929_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6baa56983ce457fb1a9935d4c9ed134f462181b13dc3c24c1f06e57ee75182f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:184d598aa8851e5a29f85aef21b8431cfedca3a5b15a302124b044ce5d87f963_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:71c9a49f4e933d3b070c5c94944df9c43f6088559d6fe5b614dc685fdfa3d720_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:9b713d523b053d1ae3c62ef21d72808f50a38593e131d03d137050474b722404_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/network-tools-rhel9@sha256:cd5a1732e78eed148055ee218de9526b3a1697823b1de097efd0c36298d25636_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:08744064ce676faf0beb8ae279c3bde23de8f9c7eebaa308d0b1e2108c042949_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:45ea19724aa7967a14afb26cf1b0a8973a47e80ba473779631d248e522e11d02_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:56d5a2a339acde6d8a84bc09b62bd6b9355782836b9947e697e0ff1d8a0b4eec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:cb16fdd3d000cdcfae316aebcd280ca792e36a20d34c19486023f85c97ad453b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:7abae09b19b3d93713992a9672172d9fd768a7bcc6fa03b34efb31bd1fa06cbf_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:ad797142832373298e0682bde2421dcdf1f0af218d46b936571d4f844c38156d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:c5bf35d33f0f5b47b4302982f2b125d159120997956b50a7458c9dac6aa94528_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:cc259b910022154df3242e399601e59751aa86cadec291c222d0489ce346c9bc_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:09261375d7f94c82b928cfae1e1912863f6657e949a9ff27ec4ae70017dce86f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:3129b055e4d8e5f7ee02b76453a3cc8924aad758f2044cb77c1f7c42f134261a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:80de744862984577e4ada4395801fabbb6bbe366893299bd8b290906da56fa62_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:a9de7396f90c2872cd4239fbdfbb136571ddcfd7b3088a64d0f049caf5b56794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0ea2a6128d929dcdd429daa3dc2877ef9fb3409b2217a119c795ad848185ab8d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:8399b07d4a7672cc0e1e72e2c1a84a346f79f6f778898ef5c02b994f3c1d161e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:aca3d00325cf1867c14342eccd3b4fc46f6fabde11c38a7dbad6cfd4555b3aff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d3860547a0e95e08f62cbd6ce5b2ec05a051d37c82a5e19eebd85cce1f8bdcd2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:40057bdf2ccecdcc5eb3d51f0a858bcf56aac751745d830be493e469c20f9bd2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:57507ae0fbc160ef33429cfc476f62d11ad725c9e86f775fbb388b44054f8912_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:81583fbf7f61e47ed16f9afc2e4068980313739a140779e55b8c44e8af5f846f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:f6e465327ff938532ec396430b3801b6fb8c1716475f849b58ddbb1d699ed329_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:484c83c126d43739cb18c807075549c4a1def4a2d97579542a54cd215fd63190_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:b5197bc4896457b44f11db8f60b434c5ba34084bed77e2c4e8eb65ad22a4f310_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:d10bc06f225c0fc3d23cc0bb79896c80415adb4d68e311392a3fe99416b8c0fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:f7d685a03643e4d26f77c47e2322fd50152786ac8880ff783239054381c7fea1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:37f9c9f66b9c208e0cecf817128272409496cf691f8b70215610edd9616d09e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:83d496df3ecd9b7ee9a57636ce189f981521c44515310e359aa80cf3462d5515_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:86c314a6b2640ad3b983e06cb7eda74444460ecc821e75387813eded8153a205_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0dd1284d317e1254b293582115dee1e32ea98cec200a0300834b2eea8d3f04c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-ui-rhel9@sha256:6440f35f38e7668d0ffbba0f5d64b3db79db73ef1f2f1539f5154a94f357644f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:34bb9d0a8b3d9d3f3e14e2da5df63c866c7958778cbedeaf99297e6a2b362ddb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:571b18c262b3b1c947bdd025b9586fbb06c59405833abeb72d5276462aac54d0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:a49340fab06ad40f37ff6c375269535c0cd3f823be1aeec2a3aa5ffec40e0a7c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:ef9c95935c1ab618ce9c0322457a64ff2343189872b6b08648ad7fc20a660d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:01763e559511ec33b4f7d9f18dbbc770ce8e9d62e97284cb924b8c29fda7954b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:0f57dc7c0352354b9bcdf327417b90f7081127b9c8eab079f2b446517c0b6b59_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:1f99aab63d685e746dd7e1675c4784fc827cd34367c84800f1022e735971ec9b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:371ec2dd479f3cefcba05cd2ec03b3c30d07cbc21bac930d29dc44de1e841288_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:8cef4ddd7e93bf62bd1510a150f6a2d6a39e93e4c75b2e942c6a0a7917375ce9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:ad1cf85db2106d12dca100eaeb1ceb771949bd9a290a21493a9b046a0b477874_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:28dc2b0080a2a57befb9534ea00a8f7225867b289ef6207b843bd813a9816a8d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:c40100816c0c4474774805d46b639fa85bf43f601017cadde5f88684f1336fed_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:34ff09e86b297d361c795d2ea20431ec331e90c3e49abdb3401f6fc5b81177c4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:a083830c601e9bc1c521cbba9a45f9bd868efd874bd9f5e773ebfb0d615a9348_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:64417baaad2df0c3434db9c0c9528bc1ace22356abb8f4f7c6b756e1056467ee_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:ff84eb595ea276060d581ee25cc284b05d9a66ebc02d339754afe40c73aab24b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:68a318aeb37f85f42d0f4ed8bd5b696dcdeeb5a66b526dcf58200871983cf4ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:a281393c3a5b75aae6e128e30a6e8b2e90c6ed3fb2466cb00799eb62c658c9e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:2cc088637f1d7c809149e8ce8b1b3f455ac5a158be631e9a9790a47521cae4e4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:980148754e31117277edd28ea01c4cb23bd6ec154fc66cac6370c6037b10a2ac_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:12f4177beaa2511faa9dfb7ca081979744bf57af5a9c08a23e2622e7341aaceb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:da0592bf33d5de6e98c629a0573ab05665d3f813443356e465b23545c63b2753_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:2ba5d0d3da28aba2e8f09467f748762a6fde443fe11753c32f3aa5f47fcf3883_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:c85fc338abc0a78b4894d874cdef0ddf2dd416111b7229d6ce86bdcaf2baf0f9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:7027e83e4f1699e3b3c425e122d1794e7480b531e82a56c3398b5355a50e1a23_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:76782cd65ecfa956063e355e28046b7fa4df3d399a3005ce87aac2877a18b970_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:12b4fa4d1677d8532ff8959e1606ce9fd25bb0c718e47f92fcb8fc297cdeb6fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:a28ae8f3d07929ac5e3301fc39d9dcdda182f919025f59762eb9cb330a109039_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:098b202a92e45c20ffff26b8e62c3afd1b53b48960a966784bbddc65c4e166a3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:8c4d7e8387eb219f06ac1fc90a095a56ae17a9752d730d254ea10816ba943089_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:765cfd55b170006ed98ff43bf863920c951e775581d685e1fafeb244c3da9d98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:a70d85af82768e5f6ba46cacc7ec5a1d29b1c8c13612baebcf98bafda651e8ef_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:2e96f0dbefee936352f2561ea406aec9bb099ef7edc0a2ab5095762060c320f8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:3033f5f14b9e4245b6573a20e2c7bbbdf5c2c4e41d1d42f2dff10e816010c3ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:18b283584742b827050c74248953593aa9beaeb0d4d743c5674587ef818cc26d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:a4cdb1529620c01340607bb6968604b96c4ffeb04c14fad3a4d47cffa073c46b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:dad66ec111258f12519f3c03f712b7cc50e9ee3fcb18fe142428026fecb79454_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:e4a149881bff6d199b6b46b24476fb5f09b3d7c2d5f113e7183c5011ddb9f3ba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:5fd4168586e99df1c975ad67a71ca072205a14255fa20e62799f38cbcf1332a9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:66c134d9d84031d67eed7b89f68a23a2c74724edb6fa578a5a45bc306d1c53b7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:6d51d4f2b4493741ae41bfb2afa4a4dea996a6b871340b2ffe3da4912b6c87a1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cd6914edf791c08c02368210fb46c22577ca25902f6f407082ce823e315b222b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:23b8369b7cbfe8e9b2de0ad960644c94c1cb85fd3169c357f7918b8e89ea829a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:261108e3af4c4d86bf30dd4af547bece8dbaf6a0931ed8c2333634a234a7fab0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:27b2848aaab846555b438d4cd2acc2bfbb605abeb382aba9ec7b60d93de1cc0d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:7519cb094b95563e61089f1b20d93695512f16fe13ce7c23e8e629fe1f7e5ca6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:31237a8830067765ba9a98ed50accb33c90fef6760ae199e3b90307f1a64b6b0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:40c8aeecbc82e3731766e9f41f0b3d8d545eda594a8ca41be0300c69a3a9a26d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:66186279061b3b43390fb9d93e0caf0dbf59891568611e8a7c3e0ad4c994c0fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:b9994f2fe48bc42c6bd5e06192ae7934fd809b244e0739a7733077817641c92f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:044b61146eeaff9a155b89142c1fadf2d7dc47d2afdee4991b8533097a3f0955_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:432c132222a85d201b00855f86ca62ecafee92d65957b94b7e70e3dd72610246_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:bbadd8581f2a87117a8d30c0832b469e1e1e115ffdcf8634f083455c1fe7aee2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:feb69b19a23efed4708b883670ff7bf632a98d58f8290a1d6d3bc504424e2128_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:59eac72519b86759591da6697edc35c28d6298bd8c2342e1c1eaf769914af483_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:71c0d96e658cebc82a05077849288f0a993d0b81551c330843e8bb495499fa4c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:92d41d6879a7cd4e7e956b92c7a549656f690276bbb62e528d8ab2e6156f4abe_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:9af81bf4eab74870e6a6c9382b0a316a37819c6591b59024aca913d542ce9f4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:853bddd0db1e5e23f9a164f50749135841a84217e256d9cce0f20d088656ee19_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:a1007fb96e5991606e054cb2a45cb6296ec0ec1898ec89a3e5d3ccaacb1be33d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c58647f89fbccb4a7f9f51060ec7e7722406e84181d7c70ffc0978ac31714ede_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:ca3b5ac347423af6140f8f817ea475975da761213e41f48cabf64a1f030005fb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:83d906282fdaa51e3d4bb16034e217547388aae0e921eaf2bbd27f0ae5986aaa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:99a40997e0b7679cdfe0abf988a9e315fad837a8933a68d136ca306d177f4928_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:bdb16e06452594fff773a20e6b242a799fa81124e7bc10e95355cff0a4386f38_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0ba88e2ec9496c171baa7f4088b96bd07412aa7c367cc8a9ff9f84b32f90a11_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:018a82a18f579d3ba74134302c3fd3d09e5a9013ba74064c8f45844ac3e54180_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:0fc69462721246d2e44c87fc082d4247b4e8fb4b9b14c675e419ea0ee032917e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3f32a863475a50100823a9252ef271990c27e4fd43aaa315d696908f401a596e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:f4e2489ff5614fdc95d61339f76962e796910866527bfb8955f21a52c67145e4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:344e692e99b105e1b832e4f63c617cecc5cd5c123a7edac98a0e8b86bb1d48c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7b1fcdb7ec8f5de760fce64fe6cb91cbf5adc97b54163777709cb9eb8ead1b46_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:7d819ce7de614396f73ecb060f4ca9f7848011df18455571ed417e2f3f0165e9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:ba38a2bec5ba9d9cbaac22550e51827e68cf8f8d6c53fea0bf2a8b17662eec7a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:2f9c636442f0c465d9de21735098d506880078274714f2302551feb1b9cad282_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:aa7fc2ff057f4bd3d50b6206a08a4b2859deb61d5eb1a1966a56d5b01053d989_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:e2b818584a887cea002a561750a2ca14ebada9cedeefe3cbb7ea16617db69167_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:fe76cdee612727c7c53cc7a1f6be345c76040c00af5ba0f1f8a012a89368c3d4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:2fb12edeeba48fd4fcfef6bdc109c7f2b6460794cbc2ffe1b7be89234ebf5da1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:6d8b378834ff8cf16e0d753f72c43cc860f962a598a8c8e86a9055271e3bccd8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:899dbdf66393a7fafeb6e32ff8583ed06ba3c4deab002f9446572a72b4ace85b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:d273ccfea71b06f06eb3fc8d7e718ba06cf3094d16e0b5b5816627d1a93ca0e6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:152f47b5d94c917158a27bd2fcd71d9faf320e25e74a63cf2b1940ada4adc186_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:2dd702b7e3f193648d0e6b6d937a74b2fa7dccb1794d259d6f265d0b5a8bf048_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6775706e56b4257113acdf7defd32380d6af2855df721e45170b0e0198707c81_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:7366e953651adb3b23caa20dd80da6c631d6c477ab1b70ba551eebc501619947_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:24dc599a155c254a29b958cdcc63c300dc2e905c54b55024f4ce188c51051d4a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:40f986374bd446fb38b2d17d28e75bc3990c9a455e186fb59de5eb959caa55f9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:529822c63330e2165253005207d477308c224d7ba7504ae0a3e2babab9770344_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:712b2b0626b1941fd361ba52a106f5d7bbe716bf33133077d59d1b514893c7e0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0df2806168b46cf7c1ee8fa76849b8ceb3e52666d0a18733d09aacf0488329d5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:199b2ee7b5d170402b7a5e38b496497a117b2f5438b02e933a74197c08658dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:ebb72f608452e3598e9c3696e9d6657cff4c406cb2f2bdafd95eb20155c82e46_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f0cba90c53c36e95e60a7121808d7f5a92fc17d3d07f7b8efa6656665c5ebdff_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:039bdf4df8cee7558a767c80a7de3ab74c076052ea99ac8acc1e604d297ac69d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:332e41c75318904014f6e586e11e9c5bd009a8e62cd3e5f8923edbd6d30d36bd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:459e5a1d82a70e828f7a3c4634dc5e6aaf8677f9ad12baaf2d07a968aa5a6339_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:e014ca480cf778f4993f9bb68508afba504a6944254480943ac8e6b9b1774286_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:232c601eeec160bf9929cc021fe0d2a84df7abaaa731b1e3fc044111214e3d47_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:792f803a7178cdb838b583073d2c02e88706d8f02b098c06e1413869fb2469c7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:a73368a4cce2e71544fcd5b7d703351847a6dd1a784efd118194454db90033f0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:abca7a61775d74bc4101ee2a9a784ae9cab6861d85020577201099db30175711_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:05fe164568bd11967622ebb9ca2eb6b2c6670670147ea9f84ec13c7d47f0bf39_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:96ff26cca0b8b03e330e1b84a9dc75e7f86f72482337cbc023d6632f27bc18f3_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:a5ce5b33b593104b69e92a7edde24c014f337f2f8b4ae43f3a01c77fa6560ba9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f7fc07f64143122dc13af521afc6fe7e958650cb0a02e25df11a407540c456c5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:4fb421bcca0a62e07841e1fb842f524ad2ecd3afff1d33b00160d578a81c0267_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5907f76b03b98a480ee0e945cc04bb5159f023285c9d3b211b04fc753e32fec6_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:c4fc71a16846b609ae3f8ef327be82ee7ad62b33483f1818968e0e5f53c04c14_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d34cb5a2547876e2d55fc2b600d5fb81fd6ecdc20d4e2b38d97ac40e4dc9f23c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:17e06b6a72e59ef59d0b695c9907283d0512588927919e8508ec27bfda4bebb0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:2fb0db5523e9857695c118323d822f0180e29a637d1effbc962a6fd17286f33f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ae6a335adcdbaa35457c0b141bf8bfd5c4868b5260218da841f802f3cc76eacb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:cdee83a1c369a21bc2c1bb7c83990ea46d4248503d3defde7e09e6262b602054_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:48323641047ab478508433affa36f0ec2e7ac2b18f3d4ee530d84e71d33b6241_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:762e95dd454ffdeb0f486dd6fb0b8a3a2a8f238963ce3f3566025c20a348b29e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:8429051c44d4fcba8e4de180ebc3c40cece39d0238741b9d05ddc4060e531828_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:be3323efcad95f3cbdbd6f2888d8ad900cee7de44a0d2e43f94aa16a955ad50a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:73b7377e9b32fb9e7d3a5816c1be32cd8f7bb647a4a209beab6c02025bead34b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7b5668734b53103c7f03f047dc798c42ebc0e232d611cd8c6e7d728c30f2dce0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:82c02e5134a5075d3e84c3e8af0a2c962b9199ecdf890c792f29aedd7d63b735_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d182f021d2397f557edf3960860482d576c27da2811795a471c3eaae4235fb69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:3d939c003c96b9502ba6ac02406af3f4233ad9635db561dfc401de6029cbc228_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:88cc6bebd82a07e699094683ad822d7b821c695792b683cf40b2b3364889dc13_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:be60cd7c8bce7a294942718853832c7e3ec43ac9c79038c6f07c0d8381327c71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:de0a1dec00b74849c1045a4342501613767aaf106a7b9394ed3e8c15d024fbcb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:1f9f09fe690a6b7b62723641cc568bd4aca26efd265a5f9ac63403cc24f91d05_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:9d6efcb125fa0a242569280622b0fe4b95da678fc0c172794cffa5ce12109c65_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:b1a064fb2a307fde33cbee0cd9ff221be7a5f0c492ef975a5262e8f45049b19c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:c7e8e0ca5ece6f329cf9b4b41b8aeedbaf9630fab8d7f857e374e235ca33cbba_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4a0103d9b7f97d20b03c1a8ce569c6d56da7f55ee49dc61669ed53ef83e00423_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8ef7dc5e88fdb4f3adef4d6bdc3ea11aefc6fb9caebde7e6ee40d90474703268_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:9569a59d29cc9258ef38b698e1b7864814cc5343bab176ba02a059bdb6987a54_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:b3fcee1ed1f7870ed51c5765491f40657817a84785f5499d5e80adf5b101d8fa_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:1fc4c1973eab6cb007303ec9395c7270c7e641583dfa2cbf2b0c17915f28ae5c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:35cab6f128f5f30685e57634e263e884d7c9fb9e1eb242f44603f662026f89e5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:e286f6ae907d2d70edc4f8b8181a1079c88f1ab1add1109d6b9b6cf52747ac55_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:ecfce7e34f758d80885524d653d78edd14302dd39ed4fe039782b649730325e3_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:09384d2334b41c1310ff90186d2542381268edf5d1c99af3574c34b9ca20b395_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:885815ec13c38590fc1d077d78e30f454b59f9638c4c14907f4a9988e3a4d516_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:c26234eea30c0c46d80f8b3c6453aed5c00f3e3f1fbe5b86936f9bd37e8510e1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:e540b7fe5eb9c57f9997977ac296e3939560ea90fbb32aaa99198d12d4713b7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b638386a0cec6bc292376065d858ff1a7ee4382c792ac15794dec8192745b78d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ec13c4fe5f761e428f71e2ad5d1b8eef90f5ddddd8e9858f4276774b7528f551_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f28c2ed808bbafbf43a7b215f50010cb84956dd58cdec5be153d264026732c45_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:fa1b92c640afcd8584534f4a2b9dd540e167f61dd4b3de24a2a71c48ce7146c3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:013830c8bd9b835b6d6384faf6fc2d5b466bdb009524490228e54c6a0e78a393_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:16a5685dd9668090ef90d3cd96c2d6e8a7390c2427f5a521d8082c7452acddd0_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b2473b8dc3baf60ad34c279f0052e7a6b03f490d7657e7a1c424381fb3df5ace_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:f00ea088c1ac8d0dea23c66a5b8511b4c8631c7a6da54b72405100d849d8de9d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:3b490f29df997ea4918abe7b97093f758e97c26baa3e11edb69bb8dacbea3d88_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:719095cf841fa30ba982847e8b8cd70e568c9e31e795eb986956e54ba956b7c2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7254a8c04e9f17465009044222270016263daaa27825aa3f0fc3a37876b2567b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:fb4c5e4e5d52a762bb3c417287996439868a34f6d8cf376218585cd89d1d98d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:0d8cac7c2ae7f07f2e4748eec7d25b26719b749421ea5efcc4e33650e29e2496_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:65fe71e7b7065baf2f4f90d30205ee70e0f5b9e88db3543519beff42d2d01d71_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:6f88dbb089ba6fdb310e05d34d0c15e1041d6b3b49570ff6ca40d9dd7a90b43c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:e1eef533a6aa195ab0b231c2d3bb18c4bf30e53d31f516e4e7eab0ea6e769b08_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:267f9d8a7b9540573475d771ff2837f540a4691464ff9f43a10f0bfbbd0d1672_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:338bee846a32a57c189f1710d929e5593433bc44b4e781018ab66ead9962cd94_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:72c001e51226b4a2cc0cb91b1cb27f3c2db76f5e6342d3e15fb206779d3c69dd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:ba508dae6483bf3cd80a49e8f5fe36e3c9875a4a63329bcb3faa5b687d048052_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:290f2f3de351ada5e9f537a880870070915dfb57757c8a9bc035355a930f0796_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:860e10958b655b86973a7e5318ea2599bce92768b86ef875d5835f6611a8b13c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:8bef6a4ea3f3b23fc432b70462f8d7b9a9362aed383e9a062a29270f126b1642_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:ec3047058cadc3777af965707a4d965ea51bc43d5aca72300bfdfcfdc54430e1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:04279953d3f90bc62166a3c8d96a680ff7f79248bb4086c68bc4294aab04cba2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:27a05727ce964d9f67dddfe65bd580b4ce997eb08b4f4cebff207534704472cd_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:94651e622f94df478780f7389e01c52f0491a6004f2acea5204c88e7bca29dd7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:cb2223c4085ff2843cfbc2c2c2a0030cba11e00ba754b8e4fa7bc2912705ec3d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:25fdb24053351c02556e310bd741b6f21e370917989fa90fc4bbd319950dcabc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:3061f10d3c039439e74411b53bbb9b99a85d863c1020d44785e1ef5b742dc3c1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:99aaa68bb529d5e0549789c8b8233271898c2b1a598520afdc55cf48e0d7867e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:ea9aa4fab64db4f4238a92f08a87dcefab8113b26df8492bc95771271934006d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:5b3f0a563aef83f3b4a7b71476b2bc1f7134ce9f681b839eb716bd139688952b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:7071544c8fa16a54baaaf6590134277507c8e64d1fdfc440941bf915546c7985_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:97d41935fc8a1d4b6466329366ac30453d7ef2bbb68cff717719e727b94948d5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:c1adea1a9bbe0bb607b36fd996edeeeb33d04badb9c6204ba63bf45a744ea360_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:1bd07d437f2b397af8afd0c82b3a4a9ccdf7fa44687cb8e532ce407db3ff1a12_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:667c183a5533598b7ef4714491345136d5db0574436632dc56cba588eab7b213_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:6a2e683d2325dbcff1fb08ebcf6200b41ae4dfc1db2f2bee5f18a9cec826af2e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a48becceb0a8a0a3b3ee79855387601c39255fe4b7a9cdd3457da07e5d94d741_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:77e07e386f3ebf436dd93e449b9111a85e518238e6bd671298eff46f41547251_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:7f5249c66d49bce33d6ebc3e295d8308c4c55ee71c0f6260d493b6e3e1f76f1b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:b37af796aa8a044385138b43b020ab96b41c3095232480983c615168a00706cd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:dd22b774eba7c46ceb3e9fa1c711f1b6dac4371ec91945cb17bc759bd3a0aeeb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:113d3d791c1405249d224a921abc10f3547f804e6130953489d5e6611f26e235_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:19a46797a757c46f30c1af9b9af01d3831ddcb6d132dbebaf7056246ec320a1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:a92e36736157e8ca871b0351a0a922a47d18fa32a6922bd8c61cddc8a855f8a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:ea557d1ae5bb5e1f78955d9a77752512655695e8ced867426cad9d46d13158d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b635805c7fde61d0d08dafc271883552082e37b0d0b6817fa183c898d110216d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b911378483517492622c32cc240d80647f76ae18089b9a456fcee0764eb84578_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d596b968f00500582af8e14a5f7470aee1dc3f8d8174085769617a34c6774e4f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e257d3e1386a0e7368e3d23fac787d881466930712a6a32c993c2e92418278cc_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:255396525941ce1615b061910ffcf327ed518eb72ebe8d2c18b326843c4633ea_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:699142d033a4dcc917131cc16174dc16591e324a461978b7d72d606eb17f197a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:c0903ad184c07d61811c5cb5bf1873a156ed0d28514dc1939c399195e75806ec_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f3d6773e8be86a3ee1fdf271d7b7f8db617229dba907678972c303b0f6e5e166_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:062b80b26ef1bf86e41f6717ae557f4dc5ef65a85ce6cdf5ec58b783db540794_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:36788fe4e8840e88fb00ec953ac27b11ac0072cd37e5458ecc9479e7940718af_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:689fb6baf8d7e2f12b4ad9801dbb2b44ba7f97c1e3452b637f2cf058d39f6491_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a3eea6f9f4422be7966f4a777bdc81c6e4da050a33aa3af7b7bcae0429aec964_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:04c093cfac16fdafb629edf8492736ee4dbfcd02e697dadcc75eb5b11c9fe3d6_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:11cb7e4cde3bca1a681d98409260b509c496dd502bcb454c7f3530eeb209c7a6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:49b4e99733a6a68890b79a31ec33c1a67e4a92d14f88be8c20c7b24fc08ab770_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-console-rhel9@sha256:e64df5cc6b3d4760290a5c4e2d32fb560ebbc3e59c762849bb2e3212bb648810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:21ef879c8605598e8ab3a3ad8f91bbd40f5ce9c5d51349d1ead5d8f6c8a27d50_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:964e46a645317ca7260403d9768e1e9e02f3c228d2e73477dccca7fdeb50724a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:bbc6969c7bb0467df72d669b992b908a2cb1dd3976cf73d7474d1a23de6e7ca0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:d6b3a8452507c1af989f81e7ab5c70be86b4a3e4e02646afdb2a272a0ec150b2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:20f83f9dbe228c769a1c58ba93d37e7caaedb7da5082c6e7e50d03af4435addf_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:44a1cb16de03d46a17023c4ec34aaba52903aa620ee48829095dc1877de2098b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9d189a292563f4173eb3cb534693a4fdc714d0c04255dca0aa7062663e6985ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:c3b9cb59d510286718ae71fbb8ca80c140c38d65e4eb493aca09de75e7446b88_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:7c5d726fe66f2132b82c6a3bd227e111728132a462d0d15afef744fd521240ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:d16a5e6f3dc82495a4ea4ec568a30c132ad8b1917dac79ee1cc31df4acf8cd28_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:ac2eb750c7be591f1b492328d2eec32aa8f5041c92b7b766cb1331a049310d2c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:d9a7b6a272c9f005659e346c7ea312c216b06ca704a817aabb183f513f3dd2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:22a5bc3596aae9292c7c36681eedfdd51566fb93bcb08dc3e71ad299d4d7dc85_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:fee0edc19f2fcf712d9980d90d77d9c521215682483552bcf1f20a9a76415192_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1c713ef2c41ac437173eb0b52aafea90176cbd2e72a164ce88bcc1f9ce557381_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:1fcdbb5b285ab21920f054d06853c35e1750daad31c8c030a407bebff4a9a3ab_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:28a676ee0bf71d8321c1ee8ff227bf149435a08bde8a1cad88f72a1fc29d5a00_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:65bebae2ec31506dbb42a492b4d9208824a425349832dcbf097c60839173d58c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:40af5882ea567c847a7fb28cc16a3c2215e80785e83a8640ea140c903683b0cb_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:9d0931012d62a3761273982b002baaec26411930e0d7eafa53b1a4c7c7916901_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:a85b1c7e3e2eaa8e865e565b684e4acb83a4db7c4148f391c30d980e5e6d0ebe_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ac38707c4656c0c9bbbb1f6634a4534cdc6b130943fa341d2871c46552342482_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:156884d42d5563646b7db4fb93b8d736dbd43eb59486f330c11754f11235fd8a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:9ce8b9766fb4e1384bc51277856fec0376917282f86b23b68fd6939d802f9118_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c1da1f77dc0631526f6fa82ed5ed75b3c78f0e2901b10247baa4c29a54f88a66_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:d74620f007a6f6bfa13f18f6d9ee3fea07a4b7de71f63816db7df41cab693fa3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:01e361d2c98b8f5b7b355a15e4d154c1001cc256cf3f98e569c953340ca4d81e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:1d1decd7a04574447abca78ce6d72f6e3f377dda62dfc6491f01de8dd90d5217_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:c54ec0ba881d3e54f7a5c1aa1eb47d6217cb5c0f8addc28edc552f00f0512a47_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshot-metadata-rhel9@sha256:ce7d64405af1b538c4c8f6175c05bd925f37e41545707800a031dc1d427d946e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:4cd02558df7d8146d3d03917dfcc684684b5745474033fa9ec1d5f5f9db08f70_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:5d4a912b7e61ce35575ed95fbfa196b81c3b439611fb12eaf7215cb7e0b1c04b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:7e0ee2d92162c27b0bb4a3cb6905bb7aa63ec0949c775b88c54822a14dddef01_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:dc6ba721c1bd20fc4215c6b167b277d6ecedb1990a83cb3bc49fa8b97a26e566_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:33ea01a22b0b2074ab62546e8d95a3dc4e227a30f7ea4e6d1b4b48b1a488ec47_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:4254c4e558a9a1f469655a761412860cbb41191a1bbf0be1aa388e5e7ac6832c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:5a600b47f80e86b72bcbc032d5255a0cdc11101d13a4022fdc29077b1f946fb8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:bcf8cfe70f62b7c8881b3034e8f50ca91b95105a53e6afaece27b6ebc663baba_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:38b9d28ebc27e438163ba26c28964f2ed8ed57be9e39e43e066b3cd86832f864_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a01078af920841464d2a63afe5b587f1616ba272c0a318d5acd0ff092cb49f08_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:cdef553ad9d575832bb90464dc0297b0c681a929a0da537ca2393e070ccd3232_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:e368cb391f51836f3bfd94e1cd11ca8eebfe56d4187cbbdc909287876f13be4c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:2ac7af62d0f1fd5f526ad962c16723363075793baa158f3cec5d8b459eb9d2c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:7424423ca332826ad9644cfa9e12966aa0c01178c80d1e761daa194705de553c_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8155177b8570ead2b2ffc89566e995653582d3dd20db295db9bfd06daf3a6733_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a8cb105b248636507c771fe44238a02a5db1a20820dbbacdefb0a03069a80e08_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:077f47c1600209beee84c795ed66d2fca8cfa51dfae3b1655d2c3b5bcdac18da_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:0e140b0b7d6f6f2694d92910bb2e80ac56eff11dfd45dd9928bd0094da7a681c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:8e4bad6259c8f29b59cacd592175934a5f865ff2686c52da8062310ed6331029_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:e9e88736eae0a5f7c007a8331855873a2773f5c32cb07bf08b56174fd6cd4630_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:5f73358e7ec535ac48e543ceac15754782dbd416ab705ceb5303b3ac7910c643_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6782ef70451d50104c89a3fec36521462a5125448766895e19a476f940a7349c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:6fdcd093d5a1cb1cf7559c4250d15f533f1a532dbb5cc9018c85bdc2ff25649a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:b296962b949f6e26194b1c170f41bd74f3a550f0b5eb46fc1a59bc8623160f83_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:4e5522f0498b93ded8d317ff27eb8039df4699c5f353b2761ac94a5c5af8bcb7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:51e9156a043956444448d24acb418705bdab0257ce1571b02c089a4fd35cb78a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:add6c6429c2fa1db3e3669775bab08d15089bdbf53d9e0d5b38e9a608c1dc87b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:ff1dbb08130fadba966c3dd9c830ea4721fb59512dee6b89157bee644c27ff69_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7aa6bda744fb5735e34abaa7eb1d4ba07b0fe433473d3187727552043e5f7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:7f4c64ed454d18d4a2eb694453181ab85d0923a90fa6efed6fc202669e9b79a7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:af428f4c752e6cbaecc265e9e75720b7661bcaf0db9b76c7b4dc2d9be115b8b3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:fc4787f69db199e7642c5cf5188cffac3762a479b65a2e234ae07db89a295b98_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:5edde0ff8ba1d54ae7f8f1b7760d03f7d8f5542f653d9543bfe458ab3cc15ce7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:71a2a826d71a2cf0955afa70be5145bd14c122aa792c44f2f1462edea8dc7f8e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:77f0810b23a7e4175efa94e77bfe648ec58f63e4abf5d083d6f70ced1968ca37_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:42bee22d65b8ae9bbefefcb5dead72de373b298e05c482366c0ea29d7f1dd756_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:97ee2ea207154f46e30a02559c7d91fd337cac83f15922da03f93e9df3cf8146_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:9e30f811e2966262647e647f20a8ada1b74caa28633cd0da14ee89a0eb970759_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1266557f4fcc980c384d3f7b4743bac9979aaf579f1ca4b934f10d144258c4ad_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:32e5304701eab70b6511cfbbdc9ed057422204a04c744e367308c9307eacc0e0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:6e70779062a9a40f69e0ccae7da421e8d7025032316b50b37c1e5f7c5268df4d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:adbd5795e4fda864d1515d337ccd13e46a1667c206389427ae5256e8d353321c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:c6d022ee973e31d8f395bfb54f03140b327ea46d5d1340684f8078a7aa45f5d7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:f1578b4baa612f9cdce6925b68c0d8eedb073b83e3fd86d7888abf54ed871d5e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:0e6f9b9ce354e1361686bf555e1bd74283c563599d036de78b9b77638394d7c8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:42bbf9df59db0d537e9624d151905ee161b2bf7d729571d7811271f1938aeb51_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:768c702f344142bd7ada39817d4e2b2fc3d1b4374cda36a4634cb9f090514902_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:7e41cae4d7688af66b5cd02f0ea90fbed38d25305f6675ae03e576039c400102_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:3eaaaff90b233a8497fc09c79e8802dee2a108b53bd91984c83fa54f8f671027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:8afb9985f3ba816783691c6dd5287878985c71bcccf7ffedbdac1da7117b8d4b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:ca441cbf3c23e188af8d3b812af336b12f548bed2996e3c09dbaabe1efdd6b1a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:fed8626b12ff709d35dfafe8fb85ed57645d5a926e01d69b9059ca05d7436503_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:33acfe5d260d87bc44cb693e2817c8a1ee61c5eb5f02c96587d88ee168aab456_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:5b091b458eb6a4d87c4de9f558596e50fede0074e5e2bafb3788583ec29d233a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:89bbfeea2974c6fd0794f5f6e5b8d7d51ad34a2ef2859e072ae3c86019ae8984_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:95ecc9b2e6efbdea01353946364ad49d20a23959893c3756e4c55ec2766bb52c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:04e36f753ba6a51aae9ca4822da88d100c4628407a460b2b7eaf4dba6ad564dc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:281929d415efe3757551b628b5c50c4054a1428f66c63acaf874416a5d70c926_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:7d51a1d03c4d6e48a48e4a8c54f808fbbb108bcc89f94347b2eedb35d2a5a2db_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f43bbe501ae486fe58f725f3bdbab33699285f777eb450d296a54a7c265bae1e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:41dc1500b683e4017ce1c51b056de8b8e8025f51db50cf7ee7433f853d1e273a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:a51b009e311def77629aed38477be4de8b8ba3abc3d9e4f0cbe2d8e8f3cfd6d9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:51184744ba94f5a6fb7ba16a9c36d22192081976b9159e7e44556d007e71ec67_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:83a67280999e20bd83a9d0bcd4c6db7113cd2672c6116d83dace45de635edb01_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:5cb7045dd914e552a3cd4b39f3a11d7dced2a92dfa06856d87021e3ea05a5ada_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:a3d834f13290023f66823bd0ab7ff77e1446061074215c032ad36fba87d80336_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:721f687f2215cd29f5ff3745d16039482125624f94b001383fd293ba431a2df9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:c6caca93e0507d5485af9d3f70ecd9397273e3324f957e0fdad8b1436f1cbee0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:e9eaffc933e33448e6786a8a46077f5185127f95ee15b200b7b474522d4fa6ff_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:23f9123c97396923c92737d4447f2f753d1a23401f6ddc182d5fc58b16c9598d_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:62cfa909fc41a73d122a5b8eac8dd8a6d4001a8d90cbefa66647d4ed3b4f07a9_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:16cc15721c14add4565cc7778670107b6bc8a17ea749ea9417b82daf7cfd2bc0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:9533a237f7bda7888b261bad05d615a98f013304dd5a8fa1aacaa58898ed4b2b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5cdc80fe99fc35205abf9d1b9666df554a7bccd4a31d419f8d27e855213f5fb6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:667a5954625fe2e6e639277c41fbe141412de4f561c31062b2ed48e28a6ac98c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8587bff4acb5b1a45852f0f515eb4641c24ebb357e24110b9946cb66d31b85b1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:e68ef411628aa1cdb008a14c9d0f4821923671fb17894fd9b70600f8eb12b3e2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60647c75f816cef69d9f25b94973c42c57701275ee1f49bbe28d8cbccd57f1d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:91e14cdbfb001974c91f2553bd5dbc634daa9497b63819a6a258c483edeada60_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cb5c73190a680ad478bc77bb2a424226dbe12bb1ff875a94d116ec9f8f54526e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:dc10e723b9a731cdaf1365e8ec41b431af73be7dc65696f6a947a2d137fe577e_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2ad4dd6c9266e917701dfabd658aa2227559db2423c8bd03d5e757fe54f2a245_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:727d7184756040ae9043fef596f64f262e2dcdbb5d38b78372a72ffaab0e3681_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:986342bb24d12257f9634226011ade58544b6d46c93a1b02469d64d4e8ce3661_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c66f607cdf73ec4b590c9c0b070a9a48dfd57e84531d019984080faebfa88b05_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:53da08ef532471d2844976d5ffb6812c91b5296bdd72f8e9bcf78d5da1e636c1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d6cae9f10da892f19585f04d051d875991cec81554331029f9df166f8a1fe42b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:379c674108feac980a6f2c38b69796a5442bf5d92ac524f8aa6fe96617973d36_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:61b8a9797df9587a0b7140bc611842a6bc01e0649bbb87411722f60b3fa1c03a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:9b5af789b750ccab96d964d77de718ba2730605daee93f917f5fdb097d09af7f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:a948a0a61737c1dcbbafbd87d2a62e8b5ccec6eb3c9b49d6462874928d121901_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:1680c17538658e09eeb5687d79b1ae975723dd7728ecfdc82a3cb459437b8aa2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a80a8334f8df8aff6db1a021a6951c655646c39c830390b1dcfe03d4827a8641_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:2fe229f586dc64b65ef6e8f90738892e592dcb7db0cd05216187365c1e5f27dc_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7e430f929b66396595979bef338a4d484a4b1c3fe3a568843be2600712577e99_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:a45da599dc562d76ce439e2f9a45b416c37e66bd5387fc3a4002915a0476709e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:c3b03db92901352ab4a48689dc8c55ffabca4d3ba6adc9e34ee07d471415e23f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:599f376106b33aeabb9ffdfe755ce65cc997f84e8a9afbd2c8b2d7af0d678146_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:914fd862135ef97d53fb452ebee453f7332bbf9d10a91c0472207381332ea409_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:af6c0b8ff7fd72d92ffbfbbba0d7c96903c0a1d238df8f1276e9bdbde5996200_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:d02174560f86adce354a31b872939d40ba8a7da42b2a10d7009d32e5524cb885_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0299bce77fb9f786465c23efc36aca6557ddea63b9642c2176b17f827addddb2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:22469fe4645b112b9db600a2eb90b93d55ea18ce2da2a8637c50ac781618c495_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:691547e1059dc64eb94ce9e18efa323a3fe0af68a0e5fa4aea19a9f81706c979_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c95ea1b18a30e151b215b647798a97e82b3e64fdd780b7876cfdc7837346cf7b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:0fed5ae25f578830f8c74975b5e7a2fc75b362a09231066752cce55854eb9098_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:7b8bb2a34c4b38eb4129037c5c1633ea1ba62567fa5c34526bd43906858a45a7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ceef484a0e3eb582ec06b03964124cbc105aeef7df0dd66efabffb60567069c6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:cffe561e38c93d00aa21d98189364fccc1635ec258130ac61b7a46e58f9e7afe_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:37bebe7d3ebd0a058dc2237c37d712afa814c775cd4d017eb175a0e12fd196d8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:5fcf0c6068d12eb2cd26c290e4e0adf7a33ffb2e044eda27add2f00a51194989_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:9cc7fa9e524c3d1f4ef2e434bd7d3663ba255b3f50b4e34b6ee58d0d5a959dff_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:d6d85815fa0e06218630ae5aaefce7820785a7bd91a3f3f36b14b467222391d7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:21859cffc2ce55053185e7a08c6763e2381ffbf0bb064f377390c71511c03803_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:650a2dea1417628afb3d8b205294a0abbccc58a67e5122c78311d32ec1459f8f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:9d9ccfba96e82c4e6530e4fd32f1694915fb9206e47c3cd6601bfa7f1a9d4e75_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:b70c03ab5fb8aa20dd1a06375d9d469baf7d835bea6b52220ef57eeca5c1f7ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:811ed962c64fb85bd3e53ff09cda0060af2a349d9338881bdf6554983cf68d29_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:bf36e637c4dbfd41cd26a618644c801f34199d6c3433f789f79d2fd84313f795_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:4024647f695339c6b513fd857d9725476c2eaf5918bfd035d44e87585d7e08b3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:fa8e959f2fb6dd6188eee5f8e7d75e1802b9a7ed4a7e34f524b313f7c722b4e7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:000e7f0d679b4884cf8c240e4ca516161dcfa38cf28abd6c211ad82dd73fc8f7_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:384fe174f50660a5d25c733fb8e50004f039a652fe3f5f699160e3f12b01eb66_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:d727fd1f52588164aef435eb7837dd53cfc0ebe5b029aeecfc12adaa8b750ec0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:223f75d7c44df7ddc904aef282eac19eab9383c9450c8bcf90a11c9a1d263d5d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:587570d10af8592f9c22ae8b9f3f5b299d782a409f895d47abbb192b3858552a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:5ef0597ca3109ed88201ca69d388dc63c77f1a0d5e7e723ae403da24edcb9ebb_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:e8be865598fef0acc0bcdb74bb462cb574c7ce4b1283cf8c7d52fb03a60b945d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:578a084b005b39d309c8a0160320a6e866c751a6872f7e0ad4a73e3d1bfb77c8_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8b5ca6bc6fe86e37a1c9949b1efe885aaa96b9da8b2c8b1d8e9544f4af7c1f5f_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:8c6e2bda0ba21e8d66b1e4d8da59104a9f0d9e5bb8b6b14bcae6e51daa52493a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d42c201a463fc66ebae50a9928df6edb670d657a56b26796c966df081ab36136_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:11125c4101108413e04cfdd1347140ae7b2691651f9b1282a68989433faba94e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:50dc9e509b13ef35ad3958c9b6775e18d8e84e790d1613aa32d4ff75eb66e69c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:cbdcd16d7be2f63a6b11efbb4412403f30eba98866c31b79411dd47df3fd226d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f82e3f80a5660791510505a98ea23f43a67e9c627972fa2abf3a4c45a21192ca_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:888a473d504f7e1ddbbc179ce0fcc48ff536b14328c22ef4826728f5a16383a5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:8f0fdbd9c462f718ddca0541403de9683674214c7ff5af539126790b13d291f4_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:912966eff943afb0ccc1fcea7803724a88d1a977b60af63613d6feea21f775f7_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:93928c0cea8d8a41996cf07a9346a96d9ee529b0f6585d5e2cc9e68d4b862ad7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:4a24c6ae177f075a6dc5e14c02e3f81f1e4cdc420eec9230c9d11fc9c5af946f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a60f62120bb53113fc5ba1d04f725c1a534459bd42c53fe81feff5199b25a8ec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:a973776feb3261a622dbeb9f15241b13a95b183a4e650ef2268be470d5ad349f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:df5b3856720fe1fe34325ecb8093344aaa32d8588b1f3d24e1f9cb5fed8700a9_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0b001117648842999d686d840002649d17a53bd6ca8ee01867dcc75955d7e484_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:17c39d66aa02a88c9b68204baa34b7645c21dc28a5a27d03c578181e48b3a6ca_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:1a0dcc79c7ae97133af5219ecadda68752d643f0f8f15a57ebfad64941adc278_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:4b6a3b3f2bd3fb175177dda3d8916bd7b72b0ee0bd2f6fac5118485d25fa60eb_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:21bbf7385bc563e0b86e8cc04ad36e994025686ea667ae6b4d7851290d512771_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:733dfcfbe68e5a9614f0bf0efd2ba4637681acecd516f328f20c65df38925b46_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:7f2d2a6e2f292c1b21d220e866c8fa69bd303514070a286dc9e002d7b053bbce_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:819d4e69de9e3645535cf9962c500a9ac87a3abb45d3797694f4dc2c388ab079_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:5fb5b632bc985fd779343640f9d68167e14a05033ec211f1c33eb1a777f1d366_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:d863f2c20b9eda9408c1e595a604907f2cdae92b093b3a8854ae0e19ac490803_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ec2f1dd7e50da76e9d60d4e7ee703377235e1dd96cd98361dd11dd6974232799_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fa22a77aca18cc0544a21fb0c6374248a21a81a7c691816681882363acdfdd73_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:47cad75042a7918041e4a97421c7e2aa824a3711f37a1d3dea827c015032fd58_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:777e1fcd2d48de08b29a12a6ba7a5768c863b94deca8f61702765dfd0bb3484c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9b5ae9910eb256cf30ab8499ad541cffc0d1993fc12b0bf19508131ee59d867b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:b13bce761d89dfd6f7061e9406b5d21b16586ad950f75bea392d7e18bb61e186_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:280d8d29ff3f858b6c2113df5b2366b8c76186f811c689bd8567c23680d1c6f2_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:52206256c40de50f2955a28966dbab05b4938d6c25417d944c0c29f46b253d18_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:76cc97870f300a96d7216f1706932b5356e4b0164c1e1c057149aed09cef20a2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ef70d0c7ab432b86accd0c70316e1656305221844bf9bc926e65eb4045164809_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:18ebbe839af4736e79d845f62805cad0cfb3116c4a6d328b8139c4859050012a_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:4d619afddc706dc883d7a875b31ffb041841d79c4b5b080417e619ca6c0f1e53_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:584ea0a3bee1425e5e18cae02af973ae36d72afdf7abeb1f211ad4971a54ca2f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:b626dd04e2dba2094eb2b15a5d93b3a731f7c9ad3f925de359c184b081e653aa_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2761831a5f31cee9cb2aa94cb66940d9342b5ea971cc3da6823038c735c9eb8f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:618f693f10646e6b545b16c489e500925a49b7b29647fb5800763c6441839710_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:8830ad37a21ea69105182859a98409ea1c3b1714c3012ae731af2d5d54dffd4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:df22d73ab16e500da51b540ea917fe864298b106f368595494a41c9248c70c32_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:5ba50c4cbed1ef3b89c718d4d68b747502d466caaa340c34657ed9dd13d6d9d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8af689f7042497c8ad7e78986cd96d7ecab7ce8038791c31e9d1d1245ad6a4f9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:913f8d5ba7f363066984113a0b2e971d2599ec4df048e088e1401c1922c33bec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:9d59543201f28e6f9b070a9352079f1ac75afac5f4ca055ddaa72b5c58665e4e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:53fc01545bd22af6bfb46edd7c39ce1d6e36b34a9be6359d5fd7fb522ce8a038_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:88c63a4fe7789e7c3de6041c035a28bdf5b0e795cb612e765f0e37e5b3997e63_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:eb7a78ae05adb58c39459afe0fc1e65bc890e8409935f0e07900663258380937_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f33582ba9aeb6611c1b36a43552386b005bc52a087ae0f75b217e62721692df8_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:15431ce7bcdca6fc22478bd918b0b18f0c3ad0a776f35e4e3147930976f6f810_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:40b1c50d3a41aada6d0a274b7e6936d6f6e7e61901458b646af22676a0ee3d00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:4e05a567f8c48056567cc6a1db48720449a25104bfe2b59c2c7b2a739ff22e11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f42efd0ef0fe5ea9ccb251d72046ac1c0776c3fe479c703b32f6d25f51a227ae_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:408124c49d27fd2e877fe1dc1dffd13afc1c079dfd8b58f6f5212fb3f6e3cbe9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:74d0f8310583da1154f3d7fde06556c4e2497773aff6b107dc8b982c8ec70add_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:38a7841001469fb032b704fd0cc60d2d31ad8c812bca324748713a0df2e27ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4dc5769a34559911ab5bf8ad10f44dd3d5d876a5ece1b2d1da5e56627b363d4a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6ddee0541e3f7cd88101d1ea3c2320b66a335c657d3f445f65ecb70953f78c34_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:aa89fe8c80539c05d91fc7bc8d8b9fdfc3c98feb4192b2b32f038fc554b86d77_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:069847f261f20b39286c0d8db44bff767751811425adfda8d5ff7f146a0b40e8_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8384b90d644d19af37f2387ca42fdd5e7a3e19b7e5e4efd37ad93b1d6426af42_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a2e53ad5e61c69f580976a150bac1784abcf050e4f7ff8ad5aaf6b781441c748_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e5a788eaa921d2d7a1399f1609337cd72a6c34580cddeabdc6517e0c8de071b9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:087698c627f491f3398b8c17b16ccdc02954f404f73e9c92a49eaf14c99b22d2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:0f7bfa32fcfb3c820d9f91a2c2ab0dcb903fc86d9896c4a15d919e98ce10132d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:6d263e40869d822d0732169c4755d063b06b1adf94cd6215a68dd4ac16f2476a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:bb1873313f8f1fe7cf5382fab01b1c4d729e4c6896ec1dc209dab695ce7dddec_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a07902a8ac3e8008ac73e6aa5d5d7d23058c6b2fe57258e35d2033fd18b18689_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:a9faba908b7531d7dbcb956148f3c2e8165b36a113c7098ff9d87675feca6867_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c213156e52a13b00b05cec755001b99163972b9b34b116546a60185eeae7c427_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e71b4a9082533eb0c01f5e76326deff883dafda572017edd20751971750bdd76_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1c27c13447d147e031084f6d7fffbc45bd5d5b509d235d84f2c4c39f6a9a4cdc_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:5eba1288519a619890c110ed5016c8bda95432dba50788c43f3e0e9edd579f9d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d942bd67945aa6738c6be73b2a5f7e3188553324c6258ff191bba9a184c4adc4_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:f62a8ecacf099f9074f9c262e3dfaf050ac17d99dc5328987b1d55084be7ee34_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1e611229690b89be15615ff298547a8747fece0d11207fc3e8f8959946a3d2d6_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2074786ef60f2605d52dedd16cf0f67f5a53d74993579fab67bd47607c7fae11_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:43df32d00b956e60f840e0ad181397f89cfa2a47058290f4e1b97597376a88cd_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:625eb40bf7f24950ee558d1b3aed6316932be92b6b74713fa2bca6ac1c6c0996_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:42eaa7511068f498ea9536240c236f5757207e4e89fc10b466e2a5c588584fb6_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:7356240f06517499aac45b1e8e6c45babee8e00544b02eb5559ffa4354f7770e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:cebff3abc2d5d0a4f38c7844cae4ac3bc2949805d0c87aad4c17140927523be0_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:f2405cfe81a0a7ae500de3f23b83a98b449a3420a262ecdbf3047f85cfe748d0_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:099a82b4624025938924d184d02ad3b90a9cd69fda07df4681e747244a869b1d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:5ed9edbb56d0b767b2317ed2c1e8285821d04c593e34c8b12c3b01ddce31f06f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c4b04e189aa573525d7174a2c6bc1763a80c644b4b46e54ac35c2a1e54da2981_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:f8f77978cb3ae0a47ba22bc25ef8278d4e5e78c738631861ae0cad0f1ba8a8f0_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:00301d20a060a1b1ff3ffd1b77ba08a277d2bb291745295bbea454e136599dcb_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3451209763a16d0b01312665e7972dff90ee7c18db577a0c0b8d0ba80c7d7ec1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:9b5fc67182cc581caf11b89d4ae10ab810a91a7685910e8f40c841d41ac83035_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:a59f8582b3a0d59fd8b6cbf9a36c44d40e5b7a7c86730921ec4871a7c8939619_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6288ac23a8c560019ee18a8237939a6e78882355c9e6166b274d8996773641d7_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:6e89ebc93d0eba6fa6c81dd7ff598fdb3b04ab163e26db5b3c43f326d42a10db_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a5c3ef35401a330f8f749c0ac0f49b6fe3ed485f731781e9f14247115e23cc72_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:cd8f28cf10381312f9e3b87b0c0a51a3e7d77f0c549bc9a79be89fcb381addc1_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:6688d9b178b8b07bb3992ed5d117f15c25b282fcb64450021f094384c9ac5638_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:86031a6bacadde02d19b75a330a7a38a01f19ebfc84e616645e9ea811fadda41_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9246f420275c1c42fdc5e5a91796264fe1aa8b0b5a3dd86437e49b9004547c89_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:94635a6d723f75a5fa5cb38381efedc3ecbecf1e278b1810b51b503b43077359_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2495ee12d78f59f8f4286de55b5fc962888efe1599c86c704e8754d87747723d_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:46966d3194df66e262d6d25f44b6a1536b9dd769ee056e283f1b85c8b530c864_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:49017efcae5b5546f6b8a50a31244464e29707def13002348d93fc4f509e01fa_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7575fdda082f76139a9364e9ad3f412ff12c79ec45e754322a2f105658ba1bb1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:202b1e67257cb1aa01dbc081c053cf42847801158485b1bd46251c4958dbfd60_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:24de42e4b15c53b95da87ccc1fc53e13142fee16a06f3a5353aad7dcd46a801b_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:2d09e00405255323f2100d04100762a8c7ab7ff562612e6cff50afe80cee3a00_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:f7bc76a6ae1d098eabf9ee7c863192b700618a7975ae650670f27461cb1d8d68_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3b8a9356f326fba95a05f5fa81367bf8095e82a753a79986945815bda22708ab_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:5d41f4f702296d9e72f1abf92f4b5f35e0215f415c66a3ed3f735ebc7e5a5d82_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:966e0dd8b9c9aeb69cad0330bde6ff4883c9070882355e6a03ff17c34c733ce4_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:c8cedaac94417542b8d8a4083f11fb3723e3bca8e688ef46b3a8127b0b41bff2_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:3a75bbf4c471ae8a3d4170d5fbc99110cf086644dfed0919f5ab1f638f78fd9e_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a360dc9fd14c57c3f186651470edaa6b37c330eb3ed757e6c5b1d444a8c62a2b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:a9d466db3647a8f9e46b5664064f6bd681bad3b11912c6e741157265d6757a71_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:ce7a5c9049940c8212e3c2767f4aebf8050825397a1d7a7ebaa01c680d180c10_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:48b37e68ff29de029049297936cb50151a3115ac5135461efa53fae355b6e27c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:5914fbde623f061b917380f47af697e2257427f6ac9d24f9b6fe2659d7e61ed7_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9019bc593c1fb636de9c7e737ab7aa4785b7c81a10c4b9e36defdfde4c3e36f4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9cf29b3e247464be501ece482d8b76bfaccd710354ead773cf9d782efd26e068_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:23ac8b01e250c63119ff60c423b9d620e9e232ae3dfcec5d2c464c8a4cfb5c7a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:4e4b1eac3ca2bc371838d489fb8477cfb16b4850bceb86f34c4b5dee33b2cf48_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:9bdcb4c4d7b9511a605ba58ffde6ce2d8cb86a66d42dd05a42754ecb10bece6f_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c5cff6241d9f4ec8f0c419bc17407973c52d387deeaa5552e4e0eb35cdafad6f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:12edcbf2d3260d048723cfd233517e98d29c971bb4304860762b565ad22068dd_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:66a0a71a79c532c7a5b7cb5b015557b433545c9b8b34a3f6f4369369a40eeb5b_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:a807089626f88df81fe06eb9bb1f45c0810b8ed62912cab2b83bb7a42ac2e2e8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:cca0b3dee61807f87bf4474fcd08615500b2f08f358468af95b981923611815e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:2c76f6ac1fb87e5aaa4a3ad1d78bcc9ddd19fe6f9042b2312ae409b642bb78a1_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:6315dc3ebbb5f3d931aa5f28b9b854cdf10c70e090c16dcec8c21168c61469c4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:9ba684dd6390ea9c8718f34761729e8c6d34dac8b590f995ed15a8c2e8aa5227_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e0dc8bf55cd2a536f7d14098c1fbbaf404c6fa55230fe61e54354e5abd997419_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:9879048ad463450472e7ef6178d9fb25324788c70f5428aa7aef311b1c959e9a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:c1362f8919b942761c4e80ffbebebea3c20bc38217842a305c4078bd680bab43_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:9becd44560c2c1ff1778329d95a38317283ae4823acfeb9c3c55419196dcfd29_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:b301e9dd28e4524023482b59184d792440f108555e4187d19cc7196f37bc4063_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:02cefe989cab14cc95fcd4f5a705b0763b3edbb3312a6295bbeb3bd03095700a_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:97edbeb672b79eed0a3e86c3fd85f252b7bc0e0696af4a4abbe471fb034f9b3e_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:d133ef9efeb364b228a47b0dda94c7ec969e7e121d6e9efcf7fcbe20b59bbfc9_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:eea9421fef5c8bbe6f78362472d3940ec6edd25d53ada6b8f7f378b5cd8c00d1_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:51d4da5ea3ead633fd2d11156f823e683da2f60da3c74863fad8567fd10ea816_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:7635c5f2b33158ebe33c7ee9648ade89c6e5afe05d973612d87df6dbcc000dab_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:b2c4a8f511caea48b3b311eb78dc56b2b82f6ac811c3ef7707ce6712ae910621_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:e8e10cbcd39649e980abe516b43be099768ec341d9fd3cfc8be0f2899d0963f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:359ffd73e61623f71c70ab79d8dcd14fc59f8d2ed8137227793723bf176bdc10_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:3fe92f04e4f30e11bc5f27d1c6492c81bac8dca45cbc22d7f9686393044590bd_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:94e12a23cba371d6c887e0d5b6f7d411cf8e578382ba2c49d096895a3e06c94d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:e012bc428fbad0d8b9d9e58c0a6d714c8b8d54874f7d2a87a4157c59c54d0ec2_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:0b2602bfe9bb6a07c441a13b4164dfd00b9be95328253fe6560617ffe947c2d8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:4b17071d35f0ca9aa16bcf49c4e9521a91fef7db955bb70cabb8821a628a6f9c_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:aac992f3359e27bba92b26f6d7e4b62f884a2f861aa862ca4824d3dd43329e17_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:cf8da2e0d568c69a8f868efdaac2db783d9e0e7e01ae6fe33de9e6fcf7cbdaf1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:5b6bb915d74cae15b152a7b96ce55bdfc0f6b9aec1616d613473e4f54a400650_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:926913d1ba0024858e61c0adef158ca57336baa5cf55e4b47461b5a9699b1414_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:bdcdefe69dcb7223aa07558319622aa81779dedc67bcdfbbbf37fe8bcf574955_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f6beed81c42773f792daf204cd23f9236be64f88a7e0a0043fe9bd68d3db7c7c_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bcaa451072fdfbe4419ff0cf55678923f906bb0cc2c3fe0d1c15eed9116b2d32_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:bd2eecb0e0f3dd28ebcdd3bf9c77b68a4710f94c210e3611b20774e350825632_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d3c6db5c6afb2a750f011d9472ec62c460d4e39a994e161771a6e5fb0071fbc9_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:d781ef9424e32094e352b9140b9e3079e2201c50b766086d0eb26e04c0e32a2a_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:08d7e5766601cdadfeeaa7a99adc9b717509ca1933ec04815c89c4dedf3b2eb5_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:266e81a5d445dcc8b872f495390f2b8a64ce1bbc4f39c4580386cb42d29a4a7f_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:5e5cc30c14d664000e52261c63bfe99d0dc898c8fcf39416957b499a8707cb31_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:b1d74f1177673f5972ed75bc1c4a8362e0cfd29d5a9713b183e573a7827903f3_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:284cf049fec61baf8bd113703c9cbb8373511328b92a3da098d35c200ade6f39_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:8b83fb76b5ec83d332f7b178aa452d929d9ee343f6eb341c0064030358add43a_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:9246a9889542ac1bd3f052efec682198488bc906f50ae651014661103296def1_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:dae24fd8d2ee1181ee376f983dfd7809dd0f5d85ceaa2d9381820f09c52a1f39_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:4d7758fd9b185ecc0a284728b1bd31b8cd9e6c4117ad39b4ed23135bfa45cb41_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:93363b152bf871b3d8de88263f4694bf1294d4123f929c3ed9501d4e4d9b4e7d_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:bb86a7876383873a469eb73fc3f54089011eb293b2ac7aab79994f66bfc55613_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:d8b421878b33313e72a9b21773d8626c17fa8c8acdc89ff4cf7770ac9f5c18ce_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:35da2ec719f2e4e8e93b0fc2b4727287aa13298d1731d73ce391d556f153e027_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:49c10a95b56aae72385eebded6c91f4bb3c43e9b6ea3db61854e792b18d8549c_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:c0ed848ff4b86526a9bf9b5e2c01858214d74e6646174c04103b464bff120461_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:e2b393e9eb3ef4054c86a67867db406746a3d8234fafd4a5626124248221a3b8_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6c818b8025c2a5370eb18b4ec1627f10b9f58e5f108432e552be1850a0d69c67_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:6e0ff508f6f36112488741c83e4e5b2043890023441e9b744db404118c9ea639_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:975671b5ace98fc1cf4b7ecba59dad8957e044e35265fd3797d81bd2a42afdd2_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:b79177ad0bf455a69973858addfffc1eff78742268faf29d1619e82836699c81_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:1fe8e2b2aafa0ba20745ef876852ec1f7f5c53e1e62d0d01d010e08dd38fa066_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2c2ea93a3d73f68ec20e8ad49674c3ed5f54aa4c4d934297a0cef5336ba297f5_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:55388e41bd14df77d7cc34c30f19f410a01362f102741cc5cb3c2748eff62b26_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:640fefc608be90a772c385f404c6385b035e679a671f1861810ac7d1db805f84_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:29cc17768aa5fccc02d6dc755717fedcd5280abc0f7383b54728b27d2da8a05d_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:62e97a2d24950dafec21139b3d1c4962a25bc331ed05f62f20666d31adc90bc4_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:785ac5c865797686af13ace3f673dbb30d565895cd0d2ab259171dd0d2980097_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:f04d483a5457fffcbe045e168990ee48946f91c1915d04e408f5be19eab62429_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:96d8c8caae9e91665d5d199bea165a3528967e7c149a506fcf53877e0b04fa5b_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:6737c7e81f0d6a887d2b71ce15349d2ec183cf37e946933458d71d2a28c5e666_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:d66feca43361d4c9bfd9fa02c301bfbc25736f22123237158271ed48614493ba_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:3af354312bb77dcda45bc341b4a459186ce43543ef562409977388c126e22037_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:324c21296757f5f92c026c210d9884f2812ed8cedda442fe12b2eec5b16bf3ec_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:949fee78507a9e4f1f7f8bfd448096550f014be4f3fe16359aef8da34282ba27_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:44209e6ad8e25708da10525aa778535755b0b68c23cfe10edba79e07636a435b_ppc64le",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:7d830ec38f59a36b69ff30d0d3db80cec901bc12fcafea70b1c9c0a1cfff93f3_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:8da9046af7176d368b646126e72c581b435e3096e4986745fcba8f43605167ab_s390x",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/volume-data-source-validator-rhel9@sha256:ed4db23ba805253809fd66a4e4ed68f306979cef20bdd4ce7f73b28adad964b8_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"
}
]
}
RHSA-2026:23246
Vulnerability from csaf_redhat - Published: 2026-06-10 08:58 - Updated: 2026-06-29 12: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.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le | — |
A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le | — |
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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x | — |
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 Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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.19.33 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.19.\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.19.33. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:23244\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.19/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:23246",
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
},
{
"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-26996",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"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-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"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_23246.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.33 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:44+00:00",
"generator": {
"date": "2026-06-29T12:50:44+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23246",
"initial_release_date": "2026-06-10T08:58:33+00:00",
"revision_history": [
{
"date": "2026-06-10T08:58:33+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T09:01:08+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:44+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.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780043688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780041462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Af1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780040098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780041802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3A3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780040115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780041224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780043216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780041696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780043209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Ac48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780043304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Abeab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ac8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780040462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ab14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780042236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Afa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780044883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Af420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780043164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780042603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aaad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780040410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780042237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Af308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780044427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780041901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3A509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780041003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3Aac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780041501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780040459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780041860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ace5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780041753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Aa2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780512210"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Aee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780043779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Af185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780040104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780041035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780040283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Af795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780043953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780503869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780044706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780462447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780462431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3A935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780365576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780040134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780040812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780041732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780044865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780042274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ac21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780503846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Afb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780040876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ae383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780041461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Acbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780365262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780041508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Adcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780043484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780462456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780454976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780365421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780043143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780455974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780060168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ae63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780042997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780040715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Adf10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780043300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ad265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780466471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ac12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780044407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780045024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780041614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780365279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Abf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780365284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779779751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Aa4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780044383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780462567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780044334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780044523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ab89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780043476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780040386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780040551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3Abca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780040374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780040173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780040106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780040431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780040250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780040455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Afa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780040569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ab3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780040125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780043978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Ab08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780040474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3Ac91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780041847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Af14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780462866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Aa26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780041137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Ab96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780456268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780044088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780040126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Ac41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780043838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780043267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780042895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Ab4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780042508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780043788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780077151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780043389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780040140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780044360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Aca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780043742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780044651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780044985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aeca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780043338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780040877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Ae2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780043417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780043063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780044416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Aad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780041673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780077014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780043588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Af14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780040365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aedbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780044673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780044910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780040315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780040050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780043821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780040144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780041782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780044670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780060002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Aa4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780041886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780041279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ac92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780041069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780041162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780042252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780040998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780040850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780040338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780041921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Aa53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780040920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780040138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780044358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780043827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3Aaa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780044940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780059431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780046879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780044576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780041147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780041460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Ac6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780044702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Aa76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780462410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780045070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Ad592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780040278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780040161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Aa769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780040359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Ade178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780040470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ae5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780384569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780063733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780040131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ab93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780040139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Af51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780043162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Abec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780456062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780040160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780043151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ab325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780465170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3A7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9\u0026tag=1780040143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Af18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9\u0026tag=1780040249"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780043773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ac0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780041774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780045015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780044994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780041206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ad1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780040576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780044692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ac9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780044330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780365324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Acca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780044606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780056937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780041386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Ab1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780040612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780293328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780041754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780042119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ae2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780462550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9\u0026tag=1780040430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3A101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9\u0026tag=1780040430"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator\u0026tag=1780040095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3A7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator\u0026tag=1780040095"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3A782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9\u0026tag=1780040502"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3Ab803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9\u0026tag=1780040511"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780046352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ad90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780044248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ae8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780040471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Acc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780043165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Ab514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780043624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Aa88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780320077"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3Aec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9\u0026tag=1780040119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3Aef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9\u0026tag=1780040106"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780043688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780041462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Aa1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780040098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9\u0026tag=1780041802"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Aed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9\u0026tag=1780040115"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Acded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780041224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780043216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ab3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780041696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ad6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780043209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780043304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ab67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780040462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780042236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780044883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ac4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780043164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ae1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780042603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3Af8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780043624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780040410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780042237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780044427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780040459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780041860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ab255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780041753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780512210"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780043779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Aa6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780040104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Abeda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780041035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Adccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780040283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Accc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780043953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ac103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780503869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780044706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9\u0026tag=1780462447"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3Ad39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9\u0026tag=1780462431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Abfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9\u0026tag=1780365576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9\u0026tag=1780040134"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780040812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780041732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780044865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780042274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Afa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780503846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aa811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780040876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3Ad0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780041461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Aeda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Aaf4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780365262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Aa9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780041508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780043484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780462456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780454976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780365421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780043143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780455974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780060168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780042997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Aa16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780040715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Abdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780043300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ac3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780466471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ab0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780044407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780045024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780041614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780365279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Ae862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780365284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779779751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780044383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780462567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780044334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780044523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780043476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9\u0026tag=1780040386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3A61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9\u0026tag=1780040551"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9\u0026tag=1780040374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3Ac1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator\u0026tag=1780040173"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9\u0026tag=1780040106"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ad889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9\u0026tag=1780040431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9\u0026tag=1780040250"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Ab03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9\u0026tag=1780040455"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3Acde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9\u0026tag=1780040569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator\u0026tag=1780040125"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780043978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Ae8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9\u0026tag=1780040474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780041847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ae32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780462866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Ae85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780041137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780456268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780044088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780040126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780043838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780043267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780042895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780042508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780043788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780077151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780043389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aaf67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780040140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Af9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780044360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Abaeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780043742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780044651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780044985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780043338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780040877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780043417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780043063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780044416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ab6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780041673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Abb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780077014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Abf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780043588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Af534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780040365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Adbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780044673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780044910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780040315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780040050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780043821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780040144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ae4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780041782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ad5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780044670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780060002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780041886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780041279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Ab2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780041069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3Aaf4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780041162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ada0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780042252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3Aacf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel9\u0026tag=1780040138"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Aa636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780044358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780043827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780044940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Acc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780059431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780046879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Af57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780044576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ac020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780041147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Afeb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780041460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Aa7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780044702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780462410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780045070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9\u0026tag=1780040278"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3Ac3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9\u0026tag=1780040161"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ab2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780040359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780040470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780384569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780063733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780040131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780040139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Acb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780043162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780456062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780040160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780043151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Aee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780465170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ae768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780043773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780041774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Abda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780045015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780044994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ad331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780041206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ab21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780040576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780044692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780044330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780365324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780044606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780056937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780042119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780462550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ab8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780046352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780044248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Af0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780040471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780043165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780320077"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780043688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3A8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780041462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780040098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780041224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Ae5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780043216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ae276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780041696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Ae5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780043209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780043304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780040462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780042236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ae0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780044883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780043164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780042603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780040410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Ae8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780042237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780044427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9\u0026tag=1780041901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Aba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator\u0026tag=1780041003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9\u0026tag=1780041501"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780040459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780041860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Afc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780041753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ad54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780512210"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780043779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780040104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780041035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780040283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780043953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780503869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Afa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780044706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780040812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ac063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780041732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780044865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780042274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780503846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3A72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780040876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780041461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780365262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Af3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780041508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780043484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780462456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780454976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3A60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780365421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Aa9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780043143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780455974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780060168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780042997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780040715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780043300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780466471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Aad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780044407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780045024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780041614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780365279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780365284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779779751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780044383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780462567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ade7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780044334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780044523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780043476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ab52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780043978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780041847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Aa98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780462866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Af86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780041137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780456268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780044088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Ae12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780040126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Acd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780043838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780043267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780042895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Af3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780042508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780043788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Aa65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780077151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Afe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780043389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aeea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780040140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Ad9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780044360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780043742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780044651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780044985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780043338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Adea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780040877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780043417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Ac065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780043063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780044416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780041673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780077014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780043588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780040365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780044673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780044910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780040315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780040050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780043821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Aaedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780040144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ac96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780041782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Aa80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780044670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780060002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780041886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9\u0026tag=1780041279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3Aea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9\u0026tag=1780041069"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9\u0026tag=1780041162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9\u0026tag=1780042252"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780041921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ad14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780044358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780043827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780044940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Ac30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780059431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780046879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Ae46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780044576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780041147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Abecb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780041460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3Aef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780044702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Aa6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780462410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780045070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9\u0026tag=1780040359"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780040470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780384569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780063733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780040131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780040139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780043162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780456062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780040160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Aa8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780043151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Ab657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780465170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780043773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780041774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ad20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780045015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780044994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Aafb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780041206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ace2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780040576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780044692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780044330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780365324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3Aff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780044606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780056937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9\u0026tag=1780041386"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator\u0026tag=1780040612"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9\u0026tag=1780293328"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9\u0026tag=1780041754"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ab649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780042119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Ac7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Ae5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780462550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ac20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780046352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Aa2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780044248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780040471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780043165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780043624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780320077"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9\u0026tag=1780043688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"product_id": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-karpenter-provider-aws-rhel9@sha256%3Af6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9\u0026tag=1780041462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9\u0026tag=1780040098"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Afd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9\u0026tag=1780041224"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3Aeef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9\u0026tag=1780043216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9\u0026tag=1780041696"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Abf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator\u0026tag=1780043209"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator\u0026tag=1780043304"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Aaa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator\u0026tag=1780040462"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9\u0026tag=1780042236"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator\u0026tag=1780044883"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ae5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator\u0026tag=1780043164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Af6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-configmap-reloader-rhel9\u0026tag=1780042603"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Abe3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9\u0026tag=1780040410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-coredns-rhel9\u0026tag=1780042237"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9\u0026tag=1780044427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9\u0026tag=1780040459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Ad02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9\u0026tag=1780041860"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9\u0026tag=1780041753"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ad044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9\u0026tag=1780512210"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Ab9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel9\u0026tag=1780043779"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9\u0026tag=1780040104"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-proxy-rhel9\u0026tag=1780041035"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9\u0026tag=1780040283"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9\u0026tag=1780043953"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9\u0026tag=1780503869"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel9\u0026tag=1780044706"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-proxy-rhel9\u0026tag=1780040812"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Af046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9\u0026tag=1780041732"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ae678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9\u0026tag=1780044865"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-marketplace-rhel9\u0026tag=1780042274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3Ae6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9\u0026tag=1780503846"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-rhel9\u0026tag=1780040876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9\u0026tag=1780041461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Af51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9\u0026tag=1780365262"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel9\u0026tag=1780041508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Aed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel9\u0026tag=1780043484"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3Ac3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-builder-rhel9\u0026tag=1780462456"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-rhel9\u0026tag=1780454976"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Aadb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9\u0026tag=1780365421"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-console-rhel9-operator\u0026tag=1780043143"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-deployer-rhel9\u0026tag=1780455974"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-haproxy-router-rhel9\u0026tag=1780473958"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3A83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9\u0026tag=1780060168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Ab399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9\u0026tag=1780042997"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Aa38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-pod-rhel9\u0026tag=1780040715"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-docker-registry-rhel9\u0026tag=1780043300"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ae0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tests-rhel9\u0026tag=1780466471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9\u0026tag=1780044407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Af49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9\u0026tag=1780045024"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"product_id": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openstack-resource-controller-rhel9@sha256%3A4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openstack-resource-controller-rhel9\u0026tag=1780041614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9\u0026tag=1780365279"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Adf29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-registry-rhel9\u0026tag=1780365284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9\u0026tag=1779779751"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9\u0026tag=1780044383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9\u0026tag=1780462567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9\u0026tag=1780044334"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Ae6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9\u0026tag=1780044523"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9\u0026tag=1780043476"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/azure-service-rhel9-operator\u0026tag=1780043978"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9\u0026tag=1780041847"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel9\u0026tag=1780462866"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel9-operator\u0026tag=1780041137"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3Aa65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cli-artifacts-rhel9\u0026tag=1780456268"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator\u0026tag=1780044088"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3Aea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel9\u0026tag=1780040126"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel9\u0026tag=1780043838"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Ab123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator\u0026tag=1780043267"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator\u0026tag=1780042895"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9\u0026tag=1780042508"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9\u0026tag=1780043788"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator\u0026tag=1780077151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator\u0026tag=1780043389"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aaeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-api-rhel9\u0026tag=1780043841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Af6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator\u0026tag=1780040140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Abd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator\u0026tag=1780044360"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator\u0026tag=1780043742"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator\u0026tag=1780044651"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Acbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator\u0026tag=1780044985"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator\u0026tag=1780043338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3Aa717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator\u0026tag=1780040877"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator\u0026tag=1780043417"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator\u0026tag=1780043063"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator\u0026tag=1780044416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator\u0026tag=1780041673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9\u0026tag=1780077014"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator\u0026tag=1780043588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator\u0026tag=1780040365"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator\u0026tag=1780044673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator\u0026tag=1780044910"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3Aa46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator\u0026tag=1780040315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9\u0026tag=1780040050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Adb329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9\u0026tag=1780043821"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ac22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9\u0026tag=1780040144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9\u0026tag=1780041782"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9\u0026tag=1780044670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9\u0026tag=1780060002"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ae526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/frr-rhel9\u0026tag=1780041886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3Ac20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9\u0026tag=1780040998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Afa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9\u0026tag=1780040850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3Aa2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator\u0026tag=1780040338"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9\u0026tag=1780041921"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ab0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9\u0026tag=1780040920"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-insights-rhel9-operator\u0026tag=1780044358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-exporter-rhel9\u0026tag=1780043827"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/insights-runtime-extractor-rhel9\u0026tag=1780044940"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-rhel9\u0026tag=1780059431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-installer-artifacts-rhel9\u0026tag=1780046879"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-metrics-server-rhel9\u0026tag=1780044576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Acbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9\u0026tag=1780041147"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3A00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9\u0026tag=1780041460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9\u0026tag=1780044702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ac56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9\u0026tag=1780462410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-rhel9-operator\u0026tag=1780045070"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9\u0026tag=1780040470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Af986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-config-rhel9-operator\u0026tag=1780384569"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Aedcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel9\u0026tag=1780063733"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ac6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9\u0026tag=1780040131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9\u0026tag=1780040139"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Ae5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9\u0026tag=1780043162"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-must-gather-rhel9\u0026tag=1780456062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9\u0026tag=1780040160"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3Af50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9\u0026tag=1780043151"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Af1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/network-tools-rhel9\u0026tag=1780465170"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9\u0026tag=1780043773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Aff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel9\u0026tag=1780041774"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9\u0026tag=1780045015"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9\u0026tag=1780044994"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9\u0026tag=1780041206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9\u0026tag=1780040576"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator\u0026tag=1780044692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9\u0026tag=1780044330"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3Aa7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9\u0026tag=1780365324"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel9\u0026tag=1780044606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9\u0026tag=1780056937"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Aeab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9\u0026tag=1780042119"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-service-ca-rhel9-operator\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-tools-rhel9\u0026tag=1780462550"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ab6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9\u0026tag=1780046352"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Af2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9\u0026tag=1780044248"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3A6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9\u0026tag=1780041841"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-rhel9-operator\u0026tag=1780040471"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9\u0026tag=1780043165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-telemeter-rhel9\u0026tag=1780043624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Adcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-thanos-rhel9\u0026tag=1780320077"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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-10T08:58:33+00:00",
"details": "For OpenShift Container Platform 4.19 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.19/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:f7c8010c24807273c8b9e77064d4a7089c8fcf6585749d864b55b98176ba745f\n\n (For s390x architecture)\n The image digest is sha256:093b7cfbad0f920f6f5668c9edfa120a5fd43ed24c71020464133dab18d4394a\n\n (For ppc64le architecture)\n The image digest is sha256:8121257742990c3b7d3b1dc4661f6029cf694a7f5f85d7497a466a019b029b20\n\n (For aarch64 architecture)\n The image digest is sha256:d73df62e9d3254daccf3fabc888e4081a67e39048191517292fdf0b60c19c7b5\n\nAll OpenShift Container Platform 4.19 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.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
}
],
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "ose-cluster-ingress-operator: Remote Code Execution Through HAProxy Configuration Injection"
},
{
"cve": "CVE-2026-26996",
"cwe": {
"id": "CWE-1333",
"name": "Inefficient Regular Expression Complexity"
},
"discovery_date": "2026-02-20T04:01:11.896063+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2441268"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in minimatch. A remote attacker could exploit this Regular Expression Denial of Service (ReDoS) vulnerability by providing a specially crafted glob pattern. This pattern, containing numerous consecutive wildcard characters, causes excessive processing and exponential backtracking in the regular expression engine. Successful exploitation leads to a Denial of Service (DoS), making the application unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "minimatch: minimatch: Denial of Service via specially crafted glob patterns",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this flaw requires that a user or service processes untrusted input.",
"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.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-26996"
},
{
"category": "external",
"summary": "RHBZ#2441268",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2441268"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-26996",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-26996"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5",
"url": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5"
},
{
"category": "external",
"summary": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26",
"url": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26"
}
],
"release_date": "2026-02-20T03:05:21.105000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T08:58:33+00:00",
"details": "For OpenShift Container Platform 4.19 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.19/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:f7c8010c24807273c8b9e77064d4a7089c8fcf6585749d864b55b98176ba745f\n\n (For s390x architecture)\n The image digest is sha256:093b7cfbad0f920f6f5668c9edfa120a5fd43ed24c71020464133dab18d4394a\n\n (For ppc64le architecture)\n The image digest is sha256:8121257742990c3b7d3b1dc4661f6029cf694a7f5f85d7497a466a019b029b20\n\n (For aarch64 architecture)\n The image digest is sha256:d73df62e9d3254daccf3fabc888e4081a67e39048191517292fdf0b60c19c7b5\n\nAll OpenShift Container Platform 4.19 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.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "minimatch: minimatch: Denial of Service via specially crafted glob patterns"
},
{
"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.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x"
]
}
],
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x"
]
},
"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-10T08:58:33+00:00",
"details": "For OpenShift Container Platform 4.19 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.19/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:f7c8010c24807273c8b9e77064d4a7089c8fcf6585749d864b55b98176ba745f\n\n (For s390x architecture)\n The image digest is sha256:093b7cfbad0f920f6f5668c9edfa120a5fd43ed24c71020464133dab18d4394a\n\n (For ppc64le architecture)\n The image digest is sha256:8121257742990c3b7d3b1dc4661f6029cf694a7f5f85d7497a466a019b029b20\n\n (For aarch64 architecture)\n The image digest is sha256:d73df62e9d3254daccf3fabc888e4081a67e39048191517292fdf0b60c19c7b5\n\nAll OpenShift Container Platform 4.19 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.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
}
],
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"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-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 Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"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 Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
},
"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-10T08:58:33+00:00",
"details": "For OpenShift Container Platform 4.19 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.19/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:f7c8010c24807273c8b9e77064d4a7089c8fcf6585749d864b55b98176ba745f\n\n (For s390x architecture)\n The image digest is sha256:093b7cfbad0f920f6f5668c9edfa120a5fd43ed24c71020464133dab18d4394a\n\n (For ppc64le architecture)\n The image digest is sha256:8121257742990c3b7d3b1dc4661f6029cf694a7f5f85d7497a466a019b029b20\n\n (For aarch64 architecture)\n The image digest is sha256:d73df62e9d3254daccf3fabc888e4081a67e39048191517292fdf0b60c19c7b5\n\nAll OpenShift Container Platform 4.19 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.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
}
],
"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 Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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-10T08:58:33+00:00",
"details": "For OpenShift Container Platform 4.19 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.19/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:f7c8010c24807273c8b9e77064d4a7089c8fcf6585749d864b55b98176ba745f\n\n (For s390x architecture)\n The image digest is sha256:093b7cfbad0f920f6f5668c9edfa120a5fd43ed24c71020464133dab18d4394a\n\n (For ppc64le architecture)\n The image digest is sha256:8121257742990c3b7d3b1dc4661f6029cf694a7f5f85d7497a466a019b029b20\n\n (For aarch64 architecture)\n The image digest is sha256:d73df62e9d3254daccf3fabc888e4081a67e39048191517292fdf0b60c19c7b5\n\nAll OpenShift Container Platform 4.19 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.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23246"
},
{
"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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:45c594587b6df1aba8687382b9416a77a7ac931326d6a7e00e00403104339bba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:50660ebed0614f6f1287cd8fccd372e6415864c65e706a1d664f73f8eb0c98df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:8871deaabc7edbb722be3521f33fa107e11d42fcb755efab7350099d3c992af1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-karpenter-provider-aws-rhel9@sha256:f6767b06b9ab3d43510a6a519a9e8d4b8256c17cfd2dc0596e740ee21c36d824_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:3c023c8e8391e3fb1515179fd048a803526da0ca106c18aec9d8099f15ef3b9e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:8545140910c14b9dd873243c5ab138cd2d783a6bbc2d621c9892337f11f2b99c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:a1c4c54d8d05af607829b86418a4243898c74d18b244e5144c323a63b5861a18_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:f1ad53e9e2b0de9b0e8bfdc3c767d579f85793a26b59f3d28da5b96373dc2b6d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:44d767da4c0a2f947371736faa848f8bfdcb0dbc89a14966909fa857767efad3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:661a500b691f99150461de9d9f30257edf9ede30d06c0ddd144a7bf1d4bc7d15_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:cded2642d3223801117318033ef5e98890cfba52950b2365985201c4fef88f30_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:fd4f8223c9240c580458e210b1fb1256c62dd95aae5b16436a59f71107b5deb3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:29e2c22d9d671e7d56ec8acc1306ae5092d7c2129f9c0b5f5594f456d5cf62f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:8556ffb5d714cdebb45a9f5392efc55c5cf374384baae6cd8cb284b13e15bfcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:939a0cf5553b4e6c638d02bd63eebc0acd377b2a06a8430dc9ec0d1e07018f97_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:b52080b7d06b40de69452fff7e44a20cdd6912af397f6521a3cc2902466842e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:59a124a0c1dcf6f38d294fa5b487e7f92628608da406ca7f3dd3a4e151e0f56a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7f55cc6db4e48557943b08bc46db7bd083f8b403c57ad697cd0e63070b8863a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:e12f1ffe655d9652965149acad9fcebe43824d1112fdcccce4d33da9796c136d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:ea5da16c8fcfb2203103e6db1c1ebd013b4db8c43b464c8c6a5bef1b65abc652_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:6c02fa209230f491502c307cf24eb2b543c06d39d145dc90f0c714d93f130dd5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:9d1afab8285a3dac07cb9ba998e1fe089035d407ef8324c47d58400355887d99_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:aad2ed4541305224da02e5f638dd490dd79e769bd6325307285a5cfa0229a157_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:be3f383be21c968b6dc6253811f8fe904666c73898357017762dd994aa7e8395_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:76c3ff2547395db809e14f5472d5a2ee2f94603684793838164a803317ff97a1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:a2c409048b995254dc823ba3a5dce7540e416293aab251b463ce4d123f4fa6e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d044d64d2aa9af3d9edbd7a0e84ff8f183f5eda681813afeafae5047582199fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:d54a4146de02111a4fab6a4dd2ccfb334f804c069f360b8ecb38947aa22aa671_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:1143dc00b5d03046f0f337e8aa01f5c5a9f6d8427c4b4ffad361a89a5d0e54e9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:3a3ffa5e00ba084c44115a9a8382a28091ae5d42439445c3a882d23df73944ab_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:b9e3341cccdba80bd9ae1a4f66528b191d078a6e85fc0be19847ccc5f9fc5f1e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:ee25c7f879c0012e813a8bbaa639100be338542afa2f08f69fb13ba3a7b70a89_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:056f2be4c4b1f8569d41e059851ac27f27e781a983791cd2c71c6f2e5d06177a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:499ce379d7bafd9320ce799b857a507d28bacecda044ca1c7ef403f4ed446c41_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:a4e7382b379b8829289b037226b121ef6b8587fe231a894e4849f654fd64ed02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/frr-rhel9@sha256:e526bfdb87707b23ed9054117324c2a601aa431b32e30809f57cdec3f8d12e96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:23bad7fa486f21c0b5e2ae4589c39f49d64c20c4274eceb9c1428d1bf6f18c38_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:658cf4e2d4c82affe646b940ec4ed32b8f498c1d3e6b0b491f7a15c27abcb09e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:65e40ab0965d4c917836a3fc040bb3d00f4349811c88602fe76b2a1e18730eb9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:85beba942b545653492dd95c30778cb1af6ab150ad5c988ec0e29043a38d0e37_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:11d6ea5eb82889ad3cc0711f97717555bf1328f30cae9e8745742158dad5c839_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:5d8da117dfd9ac3c2040d15d4f82b812cfa354d08f5e2e40776a1f511e53900e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:8caf3b8cd5e17d49508c03ddb38330d79372f912cfd690aafea97d23f204399b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:aa9ec3f1ae0988a99737aa18c582c0944f33781789c08a04ff7639051930f82d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:13deb92549ecf738cf24e009388d0fd78df2575cdb84cd01bc58ba2023074bc1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:56f8c10561aac3eaf07f2b528cee4273af35cd26a15b40ecade3de561a0416f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:e46dc8434dbb8258b120f7960749d2064a2de139be97236a8c45f9a10361c3ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:f57d79912e4d91221cd4ddbf681f2fc3a093ef4d2e1048604939a806850a9f06_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:752f836287b92103b20390720e922e2198ba5f56420cbded398f21d8b95152ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:a7f15e44d19434ca9b468aec6dc1c6308c5bedabea5e3772b32c56db213c3051_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:c6602b1fb037aaf978e634da5b513e7c3923d2f9978cba5ee5d565a95e17ea77_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:ef55dc94af747842bff6a8471d5d33909074a04ce7857f5359eeaa34a568a92d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b325d99202625e901bf30f6ac908151a9a06256cc4414bb5b238ca3656c20dc8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:b657b1c4f597192a685500894e984955b33d509e7535a2234366c505e667e958_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:ee75c5fc4cb187dfcf7cf40cbf63428959c66f92a98a284125eff4987b12ac41_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/network-tools-rhel9@sha256:f1b16f1326ffec6d048c7d153739cde44bff3f77f1bdb1db536fb27f90b645c5_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:447e5dced4ee6cc89674790ab74a12a99636a0b312f4a311988a081fc40c58ae_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:6d5d5348a18654655d6493e0856e857222bc13ba1bd8f132793426cbfd6cffd7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:dcb674f24d2a17e01eded10e4e0b2c7ea5b25b7255a17bd2734c00e7151ac988_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:ed399021629c48c23c3b5408c2efd1cc0f77d659f51100806268a73ea3a02b48_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:302c004a573a284a48de761edfb70d774bed73653d048901f51af2363babdb40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:716cad9e2694323f539efa86eda1417598c21f053809771f476e2d8addc99290_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:b649f23ab0c55b57aeae2637f5f7e6c8c3d72c5867a1ad629d08c6a082dc60c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:eab0dd8341d2fbd92b8ab60e56c0006e74693e229423a771020b209e641d875c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:2d7a0e43a3d1705c9ea63b23a79a68251f6ffd00781186e5068948302567d3dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:356a297aeb902de4c69aeac5c911560f52b9842ff4c4547a9ca8bfdafa5e4be9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:4995001b2cf416a481dc3362e1e87ba9da645c89984457e5bbf0bb027146da84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/openstack-resource-controller-rhel9@sha256:6999523c73b70058d61201bdd1001cc2f08c451b8f0d58e018729ad5c88f9ec5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:4806e12215051a7243d934f9d4a2aafed13fd78feb0bf23a41334e0a9f0cb026_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:658287399074d44c048916c26fccad95ebf1e456c096d542eb75013234ce678b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:777abb0ba8b5bb57d53a294d9e0a48e4367bb07688ea0564b808a86c4283d8cc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:98275e42c67a84876ba9b202b7c3f41250839a4afd82676957c6d350b5cdb7f0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:8924c5ffe1428de5bd7261c196e68037887fbda9f496d8003dd014329907195d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:a4039fd5a81a04231344f27ebfa75df33cea8363db664560a65654b216350966_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c53bd86934e994dc39d9bf0593b1eea9b13ea6c1b4c76b95d30f99e8b334f6ad_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c8d1cbcce4e78362bccb3fa10c90441956debeaa2fafe4f273c03458b0c3b1e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:4e36e5fdbcd81a94abc3471009be9ec627b1848a61da1c5367eb2c6e17313f10_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6fab82402304c8a234b59209b820d3479041c626cf294dab0079a21f851b94e4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b2c07f860ced499d00406784eb934cc271ad777db7d1fc2b2836367ab2bcc04_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:8b5b35c209329d79e134767c11359198f65d5b6923731cd425aae73a3bcba9cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:1ace1185ebfa66ad0e6050abc0b2a6a2f6392ecdcd3c878cd84d942a4fd9977c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:4cb15364dc3533b9195f1a4fd305ae6ad90c2af7b523dc62d147c7506b6eb057_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:7f4e1410f12417d3dc1445ca6ee51e8334a6eee033fe1a39222e236be1c03757_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:de7d2b0083b01741f2b777b1e4cd64a378d1eb70f4355ad2335290ecaf12481f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:26e83ec0ecaf008e86db81574487d41dc644a6676d1a4dfa54ee84c560964fe1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:95b771b827dfd2ba7e668b3535bd8e56b20fcd500c9646f9468504232bd0b916_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:968d891e847b70087ad7c83eb3f54ce220b3292840d981e83a362edda3a81584_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:e6a329b6b8e9863f18fe65d6d6ba6eb1f4df94596ce6922d47464303ce601114_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:032e014bebc0a6c61dd640a9bd1db3a878c0e3ef3158be0fb104e709b49f5319_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:4ab849e6e3c3c57bdc0de9142e06750dc5fc6d61123b84ed94a1441ad445c6f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:92c3659aae12eedb4f54f7f5b64b6ce25eb75a3604f8ee12f42c3d38b50bfcea_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:b89a5bddb0002b52ebc22acde7e4d6235fe70a25e27ed7e6e28ede18cf14de06_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:0b328a5014737a7c7a2168f06b1c48f98ba3cf27dd6c0a92c8392c518e860abf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:2fcc3ab1905219b7c62b17ae3bc6a83b89d912050ab9766903526b0a0f73c69f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:56c22886af71a305f2ee45bbbaa3dd90001ce1cb536e6f65d3e4f61f288e7039_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:61684e239dd8b16868209f67d3d9b3789864fcac5f49148196b83b0cbc9b170e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:11f1fad95f0a3db2603e025668a9321240fba8d6ef82cd0a39e97a70067ce889_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:c1af6f131d47faeeb06f6617362e7f3eef086c2c3c87dea248f8b30884d6f1ba_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:639fab8d1bf992562307e0bdde091dd46edc5a16e62d2b00a7b8aa94f3bdedcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:bca78eb79083d5dfdee0f0704ba267bc4c5eeff7ef5cc7b6c8eea2fd654443e6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:38d3825e62f8692a64827a9a31607f326fddb422139f08207b470e9ec4a2bb22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:62e2d4517392d0f907b95c51cc4d82f3bb2297e83cbd9e32d1fd3c6a130afc6b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:4105a5deb16cdada1624fcf99638e2317671b8f5f8c2e7bb968285297c0f2697_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d889ffa89058309dc917fa27bcf205c450afba9f956d2bfb0118745a7f4b7d58_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:189caf04125af773cd3103b41bb6a684dff87533a75eb64e39e735196baa30a1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:46c523c99845f4a70fbd205b7bf914be6d7a41ed3f44cbea0eace6d113f0ab19_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:36a73d01c0574bda5c809c36f77d72332bfe10d46fdddba939bbf77b975fd613_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b03d04dfae9985bf5763a3d692a4bd5c6c8bb9319f7450dd26c60b8d9e8b865a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:1621ea6a353ba8b255c582b8ed1eedf8d6cf263c77b675524540f0944c13987d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:b3a12212bf451d9812c9bae6277b0641a12d0a4bf80afe3fdb05ced013c4124e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:cde15b76fc6f081e19d027751566d0bd868d68a169545c53782c6c89a38735ac_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:fa88ea216cafdebccb3488b0a017051724e2ce2977b4636643497b48cf1aee41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:3d78ee33b963d92cb4af81d4ea1e830f07aaab2b07cd723ab3b6d0f5094088db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:ed0067ed44ece16bff8451830e5ddadb27f5d217f83fce61c0e9f4c4a4cd8a75_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:91c8565fa17c8545048ecf38257f9a5796b05b58f02f0c6114cf8f6f815445e9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:9882e4a79c425f3a2ab80db60faa6c69c2bb74eae1024998315563890de32102_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:b08d827a0f198dcf678540aef00e8d407cfcff798879cfde3418feb59c0f14b2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:e8a9921b7e256b981aa75faffae45198b15fc878000ee000630774490e436d82_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:14035dbaafaf5f2a107011a8d2da4b6fbf5df7e9ca7b7bc249c500e90ef24dbc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21aa77b2ba8905808ae912ddc817ca36d507222169510c854708ea155e04a827_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:3bf0967e44c1e2e2667e0a060e0eeb75044b34e315240f3c8225a8a81d3fca84_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:c91636ec499d9c03379afe756b1a53780d082b641b6fdb4f82ed98b007c8a7f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:8a2405258eddc636ce35825c984e2b5e4967f1c0392256cbc72a3f11908629c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:a98e84209d841db8a5ebd271d2d4ae3b5708a35ca724581c2ba260779306cbcb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:e32fc1f521cdce50de640077b475dc6e4549f21823b6077ef6682c76dd10937d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:f14c17eb18521d4522b535d6dff7fce807f65c4c3c28d823eaed8a0b5c86c557_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:0ca67912dca577473c1a5d5c8edbab809c3804c3a290f07d56486d93ba45e123_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:5029f300184709b58ea7fd1c7d7acab636bcab7480aae91d6b331ab4f6cde592_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:e5f22a435ea7339ef3c0ed590cad65f55908d2f4942ada10cc89dce13eeb192d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:eef7db3eff1a9e183a7d5b2f449170c7e1fb54388c1b2d9fe0f84ba02133ba9b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:01a33124432174bef23d9fa817bf1979cb99fe23714deeddcdd6cde3656d125f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a26c5c455e86fee2157fd7c27adfb822469cf16aaf3cac720d8fbd3f82a22e19_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:e85c0bdf0b9ccb4fcbf2bf0034f7e811b3e311634e37815865f9a2bccdd46a85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:f86ad3fe25813a4d7e94f92bb9c627dd55317520d1edf197aac5d5f2a008b7e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:0b9ba507efd47f63364879df4441e6ac2cc3821e297c9f70b3fe2d6aba9e3d40_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:1932e977998e2a4a9d9d3965227356432ca1777c46b944d60c26a1688b646c60_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:b3fe7071c1dfbf0a6248a3dafed882abcb241fd7a786df642be30dc1a76f240e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e276ae06d24a2eb968b8e248c78a96ae95add9fdf5a42b1dbb5196052cca2383_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:2b67539a3306f5e47beb4b40134127f9f3479afda14d3144ae8b70beeff5d7b1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:34c1fddc7e900deabe54255c981333bfe7cb70413adf278fa932e1b8f3a38e1e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:a65ec4f1d8f065e671a630a7ed1e045e3f453fe7b3a7fe80df21b4e6cc399c96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:b96b3ca8d7be6ce5bed98238a92b647e9fc37b0248c887d0769c1168164d4a90_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:12613aa448ceedd54b4e16c8479cb6d86391336f158e38b5ca640f634d0f6c4c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:2134fe82cc6af396caedba38633cc668f6264301a129b28b8131aabb3add673f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4021fb3a416c7efbfc8ce9808769090f0ff1093aba488e01847f14b250db7fe7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:4c94eece4787f778e31c91e6b8134bafba43443906211b02f06358a06228c6f8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:08dcce9e29c37fd7fdc36fb873128a9a4423249531a17a44d7e446ba916895e5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:495d78cc493908cc25b52fa5a0d5b44a204bcde4486cbfcefb759eb52a7ed1a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:50f7e2b55114d7a35689bf2a7efc900889f15d1481b9f5222c9ff3f37927b278_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:638770ffc7f6d1038787e0acc3c434b1a873936b73985fea1d15b90dfb1d95d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:012b22224535b2f65982249cf76c9ae22edfa4503f00e77ad0d482f855e45b97_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:6c8e99ae137c64593708e80ff9f7a727a09183802a1f09d9bc3db4f85cf67f77_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:c41797875bd2770f0b2da375d9f4ba119365fce735cf9bc227b787c8aec4e2d9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:cd65cfaa5a25b2a423bebf9f57a47793e39f1b13efe6a20ac13d8dd905088623_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:3c523d222cafc470e2e6436caa55d2b7f9512a2e1135481144bf538fbf8cd838_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:6364f7f4be9b04ae25e194f853e52c74c99e409d0ad1404571bf70e261d09baa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:8ff51a6eaa090b0ea40f3a9cb9559acff3664479155f11b3c74b449c12352108_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:b123cdeb0e173f5f103b2abb392a7c9220511d98907dd0a3cb709c4aeed61219_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:09bb67e4094706063e71591460aea0a80ca004b131037d3e191c748ae3a9f093_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:166f0172b4a7201ff402f68e6164fed72a4691c4ce3d8c63f43c9249b7d1782d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:346b9adc040c45bf9d860200d3cf205c0c8b39219d1d1259f01c4f94c0de15d9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:882744afe1e5e907035164f33c7ee921ea0fc4ac2f788b9946c15beb5ae2d670_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:0aa7a7a2652e261694823f5a241bf69efee3590fdd315a67480b3220051c3196_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:4aa0caaab21c057ae611b5d68ab1cd45cb8cecd5066f5a1874059eb118b3d188_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:5174d8944f300dbd4ab8541838dcb4f52592b02b7238aefdab5bee7ee4525609_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:69a566e51dfd3099a3f507f194c310ff4c32a36a0ca7cbaaf1eb4d491bbba224_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:138a36ee6a2fc96287ed335ba033fdc7edc382166318323f9463f807c9c6b1b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:6b7952b9aa7da61a08593d0815a008fcb15fb2887aa1bac1f881656b547f7906_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:b4d5834807eb7548966c2ef4d93dcc29aa36920e91900c5768e4acaf9f71ffe1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:f3236f4481ed1f3948251515f0e5464d6f6275073e0ad04b68936bf8468201b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:370532d7ad55dd01916010cf7e48a3d85c75b30c2bb06493d57cd0b22c9e90e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:8f46f925f0c831b9bb371698261ccf8ba06253c57db9b3c0dc2afc41d56b0596_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:9d0c50533d5697b0076d92616df941dba371c28298e41d4bf8e659420fa0df9d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ac0ecfb12f6cf97c15404c4f7cfafb7010e6ec2f04d3a178a32d96dffa288049_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:0077460688f3acdf98e81340aee5887c8563a667a12a02170c674ac84e2c3377_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3dba31713352febc3d0128109fc7d989134646aab7cb726eb925022789c98ddf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:66d1dd97acb20877cb2504fd99b7df1069d0d2a52d2e3efe705ecb516de98060_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:a65e4a225d385b928d7dbb9cc09214ff4b27777f61291de588e4a48753e2421e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:2f1eb072de5ff59f10794e8e389978cbc8e32428b52260785afe1b6a2012ee6e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4cf1b68b60077f4a12c26cf3ccd2956dbccdbf9004ebcece95460c5d3d708ea8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:974084cf3bf3f746107cc7cdfb0187e0b9095e647652a00d151d23238b88a121_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:fe73fe400ddd0e402e172a9658b96146eee8f5522dc13f20380e4e1c41298b1d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:37482c3e1f5bc0e4be41151cef34dc40143edf8764d5dda5bffbac00f82e2cee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:4a8ec95dda87f25181d7a9d5c07696c934cc9238db344c437ca704b5d8f19dc2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:835baf53fba9903c0c297024aa5f59af4e6810d7dd6931006a397886df5180b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:aeea17cd50a54959ec176b055844d659ce826f068f8907c7391ae8ef0e950eae_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:3e6d68cd3290816571815834edc8582f4e6feedf646b21a27ce922cf740d2743_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:af67c5ca6a60d6770c3805af3a72fa0bf86f07dbba1d0f33afed29d4d816160c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:eea6f0327044a3bbfbbe4acdcfa7f16b21beed6d4c16e3b5135840976b32f978_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:f6af6035df5f03daf6cafe7bf07b92c9cb82d0178c293249768212b4d6ae6fa8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:5837a4697829260c88bc64fe24b0fca83e45342d157d725c3e84d9181aa6f6db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:bd849a609f87571f3813838a10f602f15ba2c49dabb85b1389bfa1e9a1aa2bfc_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:d9da1cee10308b5fa860e017d73caac7c244609940e198995c97abadd871a8c6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:f9ce0d347e62f1f5fbdfdf2a66fa500acb0cddf3c51dec8ab6e1f04a668bc0b5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:82d48b615b52e007cc3d4ce7500622442c80547a02b5fe8117b1314570480bec_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:8a059b07bac37b98c71d8848ab19d29120953769f833b24af372e3b1b1297f92_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:baeb331b7d4ca049ebfb2e8b08bd6751e5b0f3648e3b57548c1db497ea6a1a6d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:ca65211e89bbc0be5309e6749ec3fd719a101f3aab97e2d18b85ef8d493afe34_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:290f72c56776265b8ea1f9aff53f2496448f834434745d84f2841b88302ae969_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:55f38c61f726242744488c5142bda3aa96b56509f42db150799918e353c816ce_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5648c4aee67ca9428cd846b0ecaf8da1549e8fa4b74545b6ff0331cc42f26898_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:5e62b104782bad153469d47d9ae122f7081a366519e1ecd1feb66bcf0703a4d8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:8f533cac8dee41fd62e466d8a1b977d744b55d9cca3b662d3502d25be2d54c0f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:bf28c09f271dfdbf252344eb65b8cabba6b09ebdf84f0e3911f5f81c3660b713_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:d6c1fac3f52efbd3650a59fca18e83139b1889685943cac2e30c9a789c602a6c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:e5be203a30a7f5dc5bdc89c95b6faeefb2f746a4a025cde4daf792b31cead816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:6552fd28095af9d563cd35147e80036201725ed73d5ca94320691e5900fab9d9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:8ecbda9de67a6bef223ba68ed9fcc95b3d1c93a7cec27b10ae26b6d0b93b6bf9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:90b01c5c39e6be26ee80fcba023476c94b22b72a1e7212f176107a194452a374_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:cbd9241e961df4eba9f17ca811822c64b940e6f68844b93542d228d27cd89c08_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:28e67f0b2c88194f1ca3330aa72a674a76abf098cbe5db893a5ed6acf73cc04b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:3d3b192c09398549f23754c29797aa9d22ee9c2b4eb9c2991cc22b4707e8ff37_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:ec3a6e9c57a51ba52eef06e7398f19956421595bc8f34e41dd77020e005ae4e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:eca498bffe180cb0b8b510cdf3d204c1490570c97b457b33b36fdb0119673945_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:8678eb6c9905eef65e18ab5d3904b3051535d49385a969f6759dfd670b4a3043_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:872be128d112636fb5374b1d054982753e0b0bf1bff95f912a85cdd0b08e1747_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:a717d501335db82b48bd6e3a7e0f328d1aa08a8d2c77f7c451082cf728a5cb83_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:dea3533135590ddd468384de44cc41c70dc1c86949dcf67a6c4215e48ae6d15b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:280756b8cbcc7b896a231ebdced22cd9ac2212dab4738ec2e8dc693289b45acf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:47610b235e5208d0ff24007b8fa8ebef918f1a9e3647e8bbe77f63ac4c4fe041_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:74c9b13947f51d11242d19a4832892fd79c1d4f4fc3b57881f17c183dbd3b452_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:e2e4089c5451c406861f890e731741190f5cefe81f782829cee3881323b2304c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:19c5109035a78a98f51e7d579bd9258d9a62ef556f582cafd2fa71cb2947fe20_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:748684018c070a12738fc1c94f4951e978eef6763c66e4b09d77a4f2e6da2690_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:8c3e7d21e4636c0d880a64c1e1a0ebc0026a1e9e3717cc0397daa832bd16eacf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:c065e8f9086ec0154055f618b7da01a214e543077eb32c314412ae18186b26bc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:41f7468ffeb1be200e8f3493035f32b852dd0505b263e2ff481ecf6a12c51a8f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:429806274bf655434e0b154625b736f77c1ce70a1bb796f71c5c1eacf6545701_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:7e953252c5b323b7fc9ddde9d3d215becea01b5047a841286c17131e5f9b98a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:86f7d701ee781a37c7ccbe42ee2f262f8f13cd73a05b2e97be6c8824597808b1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:645ed26a7f902bfdc14fcde61c207f0b55b0212c95428a19c7c02863dfed1bdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:9a6df5db4e194b079f82d570c22b3bbdc2c6415fdb666a93056c08ae1d572d20_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:ad0db5005925a6a3d498499adddf2a7483876a56aa2fbb5034209beaeb9d3675_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:b6f61d0313c1d601f2534d13bc59bb4a0425c097348c5f344c7aca51b345e398_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:2c3f85ad21d99e77e59210ce540cb8a81b78e75a1665f91e7e187c01efac0ecc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:62ce375c95aecc73fbe0658e5905839a7e729e6e0bc7b09dc6d35eeb140c9d97_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b020035b3833c6c4a820a75befafa60babcbd4a3dfd5cf15433cd56367ad7c52_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:bb60577c542bc6faaf08da211fbbfdda9420fd6df1a1bc60d38bff448566386d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:7128af779a07afe9536a5c55bf0dfcba4c81a73e8c744de7548f2ab7b68003a8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:87dc5ed8fae4c548e6578104f71a090ee67f8cc15808501351203b96e8a96b6a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:90cd349e543f65dedf81ba9e5db83da1bc3a997b55312b29c599083f42ab636b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:c48f6208bde85b78940b5f861e0acaebd3370336ae9be92d3d2c6bc3578ffa61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:8a1e7dca38e208aea55bc6550d4205f4d4b5cfc458391699a896fee7d06cb4b5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:aa5b90468e23078d4f203099c5a5e3a82234abbb0676fda1b9eb429014fc02ba_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:b67586a60d8ae725b17a12f6aef8f8cb154979ffcfb548e44e3b62c96822ffab_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:beab1029bb083b70a05b6ac35c99d0bbce460bae1ebe8ade1337258a942d2ffe_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:2968f1f853af5735f74d27c1d8a8cbb3fbe3962fd7068263b1c142a5bc07f1fd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:614892b6f05cbb4a96293447d845eec5b6b93b0041baefd23cb4888283b418a7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:97fb8c9a36fb44861dd6f66e4204f8a59b701109d4ca479e8d3f6915a8ed565d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:c8082247386099a21ea7aa9a3afcb01d7a21790483b5758f37e2b0bd8a32ebf3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:01ff6745861fa885bc4ed1a2967f4cd2fe128144519d19b5055253a34a68d13e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:384f0f5c60370e33b016128776831b00a29d33c9a32b6d863aed635b21df204a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:6b649f12a542eac28adad470507e1567ab30e849db1762e0cc0bec7297cd82ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:bf33ebe430f0d721090de24e8fe4bccd1e6deb2d080618d503191e18a564df3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:847196d4e70cef40f691ef0ba823260af6c6d30a0e5b1f1aea56e7ccd0f309eb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:8b48ebeac6159639863aacc5711720ac903842549e48729cc5f9dacddfcecc05_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f14ddc3013b66416a05b38622c40a6481bd22b2ae1be722eba93b0534ede6c82_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:f534b79debd3c72817cc370254d10511c1d7786727cc27d6df68434453fb4845_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:08986f48c260207688d1774c43f5731d644bb9a5eebb11fa27191d17df681844_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b831916a7ab108909339967cece15a374b08264f04d861a395f524ece350d69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:dbdc46a6e712ca17be0e465716839002efb696cd99102617f0e66685892feb62_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:edbf1fb754a8ace8d61312ecb0e2bd33040dab5b049ee97275c177c1162a744e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:344f235f970005a01dd4c26d41cc06ac95a9a20906bd813e679323929c5e89b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:6f4ccd24c471a910f182b2394dc559a5fa760a6aa8d90e95a08ce54892bfce7d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:8dc1a0201bc54b6aafe6170a850080b31c43d6909704c6ad40dd9bfaae13817d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:b14b75db802fbcb383a84f2d36456995b63b684293d9185cd1f780dbed2d0484_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:0aef51df3b4b3861f187dbfccaaeaaace6da678e738d4885f1e8a5bd2c62e914_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:43efa265fbd25d6c4d29ae224d234923d3861875b96bdea5359ffd48fd20ac97_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:8f76df5681429bf60a3cd5fab31fe15628d35a543483386ebc93f51aaec26029_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:a46cca442b1d1edcc7cff1bea5e4b63cd6372e5a48613fefd203ecf0950a2c28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:2df31d04cd3bc42e8445ba0e12acaf0d2fd19d7b5cec2ef90d0513e7a6cadb07_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:317b3a0d27e6a92040adfacff3ad63e996416a8ff6766f9909feed1ebe80c8cc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:e0596c6691954b461c47f18bf55554c285fb333c942f3f6a5a68a1fe6469cd69_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:fa6773d9e7f5e02de0e779a2f7f25edcb61c4b6b25f4900619c7dd2a642f2416_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:1e0f7522e7ea652e477f3db0c327a21016c5800e5edc983d1a93eca6b76d1354_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:2f8090df4dfce9e27ed3ed9fbbb5b7a8bc70103d8f5032ae655de9dbfd3e6d8a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:3e5f57274f366617657ceb5c458c7bf4a1cb4510e10a608124f7176cee56f54d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:5447bee7e9ab06355c5b3011d35e3dc40ade77d009e6a8e982383d8df5623525_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:5435d3c28aedce248757027c81fda3262a9a5ac82818cf2cdd2d4b7f2b648bee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:c4b73d464d89d64f0b5ed043bd9617fa2a40d8d3790f28df95310aff98ee932b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:e5296299a4e406f9067bcb73d890c61f323696bfd5e82cd2fdaed421381dffde_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:f420a1e59910aede9587e37d76731b6a6143d6f035fd9ecba774b58ce23b7c76_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:5cbdbfa7449b2a8cd8204ebbb987825bdd93cd1549e698978e1d5c4346cc8caa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:777d009e4004a36c5b046f692af3b24af5eaa3e7018045e9af2628db7fef9c99_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:e1ea14f9f4423841957944dcd1a33d28f4510c9fcf1f59904d6dbbfd1edb47dd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:f6f96b538f548c0c25a8472a940cef47733115091bf55e0d5f1ec690f3a7ae7b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:2a90f6048e6fc7fa830ff9f0eb7442b2bf6f65f87eaa64f512aaa7c142d2354f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:38daa0e0e0b37a1b3488fec3858f9d1069e2e58476f980340a6f80240673238f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:3a8e5bf206d5a114a639f3bf4a7f820f404cf59427ad3fe407c3d32db2675b41_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:a9e7b2606c8fa8d648e97b2907c014fa53622094fd34f8301596392809fbe986_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:140a985e3d7e12157b8a41c76479f152a6d6f04002827f6b666e4db464426bd1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:5fbd58e9cf4f9792a5a89e41febcb1070cd10b95dc0dc8ad1037338874e02982_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:60105d4a49ee6e73ff6222deb0161dc2e1de238a3836112543c65ea176179cd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-console-rhel9@sha256:adb92c21a35f77970d2f16e0878736e58fc407904899ae67bf119872ed80536a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:4ec3990950f2894d58b3da79cb9956c218edb4cfa01c5c0f910636cf526be90a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:59f13c16a63fd21a0f7ae6c7a1cf9499aecc0894517cc9dc7c1fbe912f41dfe5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:80718f64217fc589797f3604e666086f478ca8179b167537a45923d9e24e2bcb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:db329fe6e20375f2aeb9f6c777ccf807d380d23b6150f41e97f3e94dccf0bd6f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:56a5158bfa5c0f95c8c28a976562142581e8f76f2f5a2007f7fda4cd83b189f1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:6308520552fadb6ec5287ff07f6260ba3d890f68d5034508f7818ae9511ce05e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:740a38a9fb265f0e393c087b154c2f81583abae532d8bd0d2a77ae7531fe4144_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:e8a3049b87303450d3404e12c9da39fb0c24499952c2ae152a960dab685f80e0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:509c300f66e98911c1f3cd713c5f046a8e23330e80ad48729c674c71fa10c777_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ba42d2c5db7b54f45e7e5dfb4e5c49e7f8c38d2225ac782bba233f84a87bc38d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:69eef09a41f667f9d1afe875330e5a8fcb09d117b5d59233eff213d4fb35ac8b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:88fb29e5361bc551d0075eacc82f60fdef37e1181041a0afeaeaf1675fbbb588_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:4c56712b7bd3ac779ed0d1f4c7cda55ef18338fbebf96069da684c1b716dee86_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:ac0411e8923d844904161a2a75ad75e558964e3ce26968fd9b65c1efb083e170_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:348d5a044a863b47021c43b0c08144b0fc2948b559a13b5bb586248dec2beabf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:837a1d60accb813a816d58a45a666939ff5652eedacd2a1d8e47b76471e34a07_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:83b8ba8918c2d14f38813acd788f709f4409712cf7b9e3adcdac06d158e7a2ef_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:f308da38e5dbfa5e86e1ad21349620caf62a6f79652a74fdcfc1ae1affb8b8ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:09d15f49b33e1ffc7908eeeef7c99279ccdc0a1387d80d02caad9db49d800c1d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:b255f3b8b915061acaf321bbfb22bdb0a36092f846531c099115edb4193a2059_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:ce5d3b7faece0d5090aa77c3c686ee1f77bf500df8c388328657d9163ec28898_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:fc33f6b0c2dab51cedff16b0bab124233be9fd92e7862fcfc04d589595f21583_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:02becd2a2289b6bc115be1aa03ea5e1fc7bd50b844b4bd0c84bbc754ad8f4ae3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:28b32cc4ee61557771d33f7fee3fed4ea984304c9b80ee13fc7d959ca02f2066_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:aedfcb4708850e46c994c1357aa4f0bd3a0c01dc34e892cae5dffa95e87c46f5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:c22517cf1d3b3d1d38285f51f281beafb8f12ba1d1915e7e6ca9d6b64e65098c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:064f0fb763002bc888c2817221ffbe0ef4b53464d11a66c409b9179bbb758a52_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:32756dc58776ea96c770a2c6810452991d4fa3cf57a93bc41a2710f8f5888e4f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:c96cfe786e69ba141dbbb11c031e6f38ff507c07286e44bab9eae1bf6bdc1c91_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e4ad3efea6a861e5f76a3c43e6d628dc9ff941688b39a116fc3c372cad29766f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:1095e70adb365885cd5306e076abc1700c9f83631fb8747ec175d48f659f655e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:3e4dfc9ed1ec9b5257f16d9f9e69e8a7fdeb8ffd1c2888fe9177e34b9cdec96a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:6ea8e769eff7dd0cb7097bac94d6ad638d1aa620c17ba469a2ed080b77538b03_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:87e842bdd0a3e30418d33ed5b7a57baf7c5518e7f6426d6094301efb9e6dab19_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:3082d25f64265967b833d451b22690ac947ac06531dedc18175a8266c2698254_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:62e8db53b395237b82983c662539c9609a77357ebfacc5a32e64bf21793875ba_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:969a822268b8bc74abb1cad503bb06751841cd0508aaa84cc53a4b6b8cab68f4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:d02ca547a4c4f829e7fd1acf9ee2b7b46b3d84fb306a094dde46927e29642f91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:1c30e54b1256242bbc641ecf819c771ed03ce77eae52c7490bce24015ca62660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:51a4a9b7fc008a4378c3491f4da0f492feb6881ffd58fa47f7a706235a290abd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:a80ec55a50e776f53af9702823e3ddd8c7b8fb5724338d4844df997c8f7b1897_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:d5fb26ad1d0825a92d5b466f2181c4941ad82e692e6d86da91bfe23c332c6a27_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:1215a37ee4811db37e758e4fbde29961ed725200f8491437eae95d90b921dcfa_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:37d3d6f80a6b1f8be78e190642a9eb61bd856b2735716ac90f4c7f24b16832e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:7f387b1c8f810cf58ad17f7bbecc5e66fa41a6df9021eca7ab6f9f56d4a5842e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:810de7577a4de8f231d5b17c0097025c558c7c6a25d377f691c3d471fe2b5b1a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:3c170cb4a512408ca9ef1e5d625453f582f8dbbbfabe80161f31fcc77d321f95_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:4c59dac0c71d695b047d4017d5ad36a6f143150acba6ac7829cda2829d65b896_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:9112b471f72c2ab966dfcbfd83b4b52cde994afdd1f982fb93a751a9a7b74a22_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:c3d792c319ddbb9279c021610772375d209727ad24abf674bd5aaf97ca43ba43_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:251d08724709b13b617a1c71a9ad888016feb9531c734d21ac46457f81ffcba0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:66a25c884203d7b548fd977d231c21e6a29a308a52b867bad25aec160fd4b45b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:bdba5899c252f8c3ec6c415fd167a2b538f225599be6e480e4ac65ce7cdd3f11_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:df10669e09b9a6bc9ef7e950024fc08b345d6440cf62af8bd11c57f15b30e500_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:049a5eddd282c5d79ad0ca9462f1ac2526d3041b51be42b085866aaadfe13512_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1a80b95ce7c05db734c717c6124fe2ba76102fe53796359e764fb15a32f0d3db_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:3e748b9a055c05b45b98823479269b048ad748ce4c0a95bce207abde5540190c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:65770df6956c2a8cb702446375c6fed4e9308521d56b1c055ac1442521bfc9aa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:593b5c552c4c3519a17095b4cc106ed9ff42fe84cc650b5af54c18c1eafd2b00_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:88bb0098f062c5dab2a5447bc6e48d8a150c711318952df336786adfe4df3c8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:9126d92571af3f4c450edbac1232854351940b74e882021228713e1de5ca3e7e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:b2f23e3e41260962c29c7e57595363b07cdcfef2002ed3bbfa5ad3aae1a51b73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:c92bea7ad29867021e10f8fbe985d97e4778952058edf052774ff98b7a140d17_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:ea2202879cf554c8b142014327ad2161c2c22a254b1fa2a8a0c2eda1ea2532c5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:206ea391b240c8b6a0ed9c40c3574fd1427b72ab445c1a620f4a5140af5d97f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:64cd63b25f1a95c165978e0fcfcf896f42aacc5fda1866e4e28719bc8980add2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:da0e0aba370f153ffd970f5a1f27fe512526fabca47ea8b8fc22c30cac7084d3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:478b809115b6a3ef9a8b394e69e774cf375cecf4ff07d23675dddc5ca7f38bd1_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:50935e832441c57d45362f52d929e2f3b3c2c95e4b442e2a9a6fe808f5aae9db_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:af4e78aa75f1bfd44647c2a7270dfeefd797f5fe3d93b67268f9997f8f16cd72_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:390aa1cb6b129c65728bd140e7f5d75b84f4b4a6443b75438ea69c4172977e2e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:5377cdbbaac15b07d5e0ea543330e304b2095f2d1d3ab7ae13a2723976d8f0d0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:a6ace4d4c748c2f6aa11e0098e578db14f5a4863f6a0b164cf1b202b323411b3_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:f185d36c8568e7b2d78d4275c1494caa81f9bbb31def87582746c09f6c415475_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:06e7a6079cb03b678fa6d213f621a91d927d0636181d52d54ac485cfcad9a060_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:4f36b40bddf9ad6d6b2112493c8c3dd746443652e5f911e9213c34d07a3d620a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:7572381f70a58cbb6354e3d6c0a706b17bf4c679d5b4f6648014f2487e609e40_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:96737463f7e1753f5c172ca2dcedbe9e8df28bc8db780388371476d255d9ab9c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:24fc85c4517b72e6610460737f83dc202adb81b4d2a69ebf6c4aeef2b4b5be7c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:72086b4bb54338544db06ee21fb02a6e5d1f8c506356cf1fdbd821f809036c64_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:83d199729e227b447e0efb2e6a3d66d4ad2c8d286e379dfd7b16a752b40f7dd2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:94b56756a8b5443c80fb21c67303580bf4afefec2a6f6b71f707d6b8da07262f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:1153f349ea8a322a06960e58d9c67eab76fb64205abb2ee1a8745670ad5cec01_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:819e1c57fa7d675ac41eef8a53557859cb7d25f8a2bf3e12783474c9f14ed708_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:8d9650de18f2f5392d31b86a933fb68a70528e7c5d355c27dd554d34bd149fd8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:fa23c7a2f801ac4788caf3148bf0bc941708775f85e37a9001b15d6c2f1fef54_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:0859b5d7882e970bedd12cab3fd2ae23160af0f4c88a555c357e674a2e5a839f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:c20bcec606a612c246989a3d9509b21a50f94f96a0d16bfbd8d9f58821f37387_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:3c96c3d7d10b4f2f154f011490a4d9efdf0d61526da41549be4e2aabb7d12225_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:a2ad74f17ecd8e33cfd45a82878023988514355ac76b5cc5d9f7fca956d8642a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:12953e90890ebd1533028ed41ddc09f22599e3e24c09806e5ad3d2c7f4a1a055_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:fa108c4abece0d06dd1acc9a85ad8b676f1542c9702b00b233de8fe6a316d97b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:02cf1c51e8b0467815446e6fa508352beec130553a3dbfed5487800d164cc539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:450c28ca1b060720c288b127e749051fecc9977886b178d02f725413a5ce3538_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:626cc3520cfa810ef8c5e0f934fbb75d1e169f2a97969d1930ff96da55630b1e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:a53de1d0e0ddc563251a8e49c8741a5760cd20c76eaca89248d8fa6f5861290d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:b0a4e40beec371723cceae31afb8286a874e2eb38be0f3219b1a51a5bcd84fd1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:44908df593b79afa60891e69f31ecb76bda8f2bb02ed2ee83f14ab431f4bcdd6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:acf18284e109eacfb0c2918cb6f7dd180d68bbaa42464bc77307e771e8a31173_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5a938a9580527a0bf7590940ebcaf068deb8f811744f73a86cfb6f1db282a69b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:8a421ac000da4341d2c39ed8f53471336207384b18f94ba25f9a8f920ebd1174_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:a636eec1f32921c65a9347bbe2debafd30bfc0bcb5b97f763c8ac1dd9d8a47e0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:d14cee1c5c55f5115f75da6452a5c711a2a80a5b33edbaf992a275b697f79385_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:44acce834a70e9aaf45806caeaf7444fedb2669ffb629bdb1fd00e17dd7754d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:5de66bd6a767173de49c598e175f49ed2358fff12921fe22551fe3703a672c30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:60b17ccb7da26437d41862343389a285b254745189a050d35c439d4990ce575f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:931644227fdbdc57b9fc1477e540def1b1243d72ada133c4d95f4145b651d4a7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:2fda198310008c6de75245a0f1d90ed365ba5b234519f43aefbf7a034acec0b4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:937daa5971d336dacc793054d6d6a189e7a93144f4bfe59be7769cae594cc0a1_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:c30e048b32a75bb6f4e49b35f316b95df28b21489118276607aea989b90b186a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:cc14c082e30ab2bb7e9ef847096f96f635f5df3f1f4a510bb37b160375d7ebd9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:0e77b9198ea3934da40826390826c1368d7b814c38982e0ebe55cb93fb0a784e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:d39fa3f319353bbcb73cd03bb02fb69b44838e68ce866a6530c4f0bf115fc9f2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:935f1988d889fd48e646856bb90e709c7dacf2552fb6b944d221bd88a46a205a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:bfebfb142b55c2b2fc3493376060c92682e2e3e8232dfd2a00e3d0410cd24a68_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:465c5d5f845726fa0876b6405dc71a5cb9f7295c13d15615f0bb3e0219efedb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:57c6081392970af508a508a8fc6cfc19375834a0d7fbfc99b013fa6cc2eed480_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:120a8ddfecd29e580431cd1a0e23e65bbcaf0776a96a67ca1abbbe2fc37dafb5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:61dc0490092fb41f71c601bfd1423f7b590da9c8bb24e204d4f3892056583d81_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:6d48c3d9a7aca0ca59f026538ace31e2298c5917af2568e1b72b0a1ec031800a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:92d7caf7db1877bc82fb8b91127f33a554615851ecc13b5afa2a07a47710f8d6_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:b399aa4ea50f1e1895c12a5e80dd482d32ad58c66f459aaca4dae9fcc0580591_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:e63893bcf7351bb2cc1ac9dddf8d4f8b0ac7d9aac52161a5e492d1ea949ae67c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:18015e3fd91217ce5464e293708b3affaee6b95ba33ec6caf5926441c0275dd9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1bee8acb7e1b1a7de41077caefea0a5dec025caa4681987d2df24bf0da7d2f98_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:1c29c983533ed8e7b1428b1ec8e4c8785b6a755579e4ff5ce942abb79ae8e464_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:384ab8c089bb61b5f6a57ee1ececd4b6e55b888acf85d739ab6078c86a3fc624_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:26d3b9ac95b41e718eae9b9ec3cc0e499fac8cdc3b9bb98d707231fdde284eee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:482e89b37f936525a9f1aa640b1fda34fa875b404782bb80c230398cd3481e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c063adff74c8ca5e248db10b2e81c43482ef7cfc19c80143c9455e4aa0c7b62c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:f046c6b903e28ca364fd76128357ca15051f739dedcdc567a81c74d3ae10f84f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:2ad57d113a1634caa12d5a1e4c2e3072d6a4cc8273b0516b8056ed1593709bab_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:39cd944c2e80e473aea0ea92560c99b04b220f397152281bb7d11ee5bfd2a2c0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:5467b930ae9edeb8bb1450396814452535de875b4499b9ef8f95c3675d4e1e65_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:e678ccb168d8aa65c5670afe74bfc3e513cadae683223fb1503d11f7803bdb6d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:21e6b91ce91ed3cbeb70c02c9758ec041ee1ccb2ce2764ff80e9b395c5051494_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:768ec99fed7d62e3240e080e6a1ebe7ef1066955d9ee2d85a3531a9ec256ac4a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:c020a1aa2047e07214541b5ba84c6f6f560a845ad07bec614b918a851b6d6d5a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cbd0e23e800fdb540235bf5dfd73732cffe3c0e9846fed4a8914eb3d1e76bd00_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:00b340b3db3403deff9ac5363c7b5ab6c63464aef53900fe9d629827f30dbc89_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:25d40bc0e5640e81341a785580933ec9065617cc5d16c137a3df4a473ca601f8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:becb6e1ba1c4dd5ec99bc02bd31b0fc9902b5980428e72c744826f77ebe23c84_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:feb7ed58a5c402596265039e16faa9658cbcfcf41a8187bae665da787fd35220_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:591f537971ba509b7e7a8b3e248889f423ec16c654a479b05792a6fb0a58efa0_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a6ed84f2e69edddd77e29093bb31d2c74683ea550a354305d46e031969407883_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:a76ab622453366dcafeb67244a2847283994f7c398c360966d1d07b316a79453_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c56554dbf9c1bc992b360fbcaaa37a0bfb81409c3638bc4bb4fc0798edfff768_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:5799fe562fa26fe1d347ec2add01d958090d0976a355324fdacaa3b9b874871c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:d592ae9090b1bf5bbdd6fbbdae697c8c6669372e5e8a9ba0e7bef455ef35c78a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:96cb6d308f7d44515335e9ed1ea2b97e8cdddb9416407b1cf16143b26e2bc6b0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:c3ee2aa40adbf3ac95074625a0260e593ed613eb104b50c329f8fa777099eff4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:0ae8d49b962b39ee4b9eb542265a7e69eb22ed9b1f06ec0135377c21f921dfc3_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:a769742a9df12327d9a3c6aa3cda5923ec51ad9347f579760ae9f28cb0aa0478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b2c8c6e93f6b571e11363b9f3fe5983224cc1d5673de6e98ffec76fa7e773a0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:1651e7854682b061f93577c56ab638d99847d7e0b2be2bda20e9422c186d601e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:615d59784cdb47eac7a6f2e32aebb524d71ef9e859d121211ac2473b5920a84b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:ad20080ca7686715239ec4bfd85b22de2ea5eeceadb122af3ea4c195214429ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:de178670f45bfa6690d4969de3ecd43a61d56beac7b93ca5aa674e279c455f9c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:00b2a24bcef47dee2310aef675862b1a4f4dc035ed74840ca17ee7165a83fa02_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:2778f2a29d4ee88853512b176bf8e14a62c60fed9c50c751f36fe2f2262f71a5_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:735b09a7e0f5b049c9147608250c9ba61ca724e092e747f9aa4f9886474022a4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7c86e2a34ea5fdaf23f868f9a36d457c29a47ee6ab3585fbe28a616d80a8e1b8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:6689c0d99d947683fa89ba5feb34e1f842c59050330848eeaef145284ac08076_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:71984f4298255a4ba2cae967a5a140dc35fc2498f7fd4c83ce5c5d1a7705e206_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:e5fe08b945b5c76416af2e89b5a324a21a39a39a3b2d24793898b2fcccb46aae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:f986ba22174b32c8d079c99b88dd8dfaf1d5414548e10e9a421208826d24d103_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:14f940fb06afeedf4aac68a052446e53b332ec5e8dbef8caf915098a38190464_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:63d4682f61e5deaecc061fa9cd268bd944dd13bbe60b1f65705c94a8b871939f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6dab35f9f7b92ea3efb6340b362448a2d6d7dcb09ef82896cc93e2fb611d1730_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:edcdffdbb5761d6fe03e803ab80a14b037428cc9a45360affe48ee441bf0c019_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:44f6134f8237ceb6fc78366cd48a6b893e46028a041014554ebcf681cca3b2c0_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:c21ae071d43ddd8026d18326a8f23c4b6e350f096adb89c5b781a3a3351d9699_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:e6b0fc6585ab5c69181cfb3fd06ba473924c4022d440b956b9c43efe4ddff7c3_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:fa4e401b7aa5b321ebd80277d9db312fb034608b41202b5ca0165d1625f4fc5e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:0e549b064b9f16d4ca1903b3fd39212b77a8f482c7ff4d789a10dbf98a2b1c12_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:47140e140a70b2c3fa990baed940fdfb52b9d3215b3a807370cb1c5d02c39056_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:7bb80892a61a26945429119cbc8e115de3c5205e7890ea867db12f63790efaf5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:c6e156b9b0d986857f79f757ede78cff8b24bc2713600423f909f9a52b7b5bf9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6aa9069872565afcf3672553746ef76c1098c7153aaec2501226ebc4b81a04c7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:9d3181159631f3959aca87746c9061d563ab1411b49ef8f1d570e148c0707bb7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:d0f27ba0a74e9c70ee58ec7725d52d6eaf439844f766a493e68e59e18314f288_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:e383d8afe4edbe8528ab09e66defac5c4b7f36608a7d2b35b5073072807d3037_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:72370b14ea79e93a55702eff7ea50d8ed5f6f11dddfded68ec1a93a25bc958cd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:a811d0e65c32b9cca2d44b324d10d640105a2575ee5585228985319d839820f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:fb9866187a1e2005b5aaae7de7f80b50a05bcf622e0d268893209b9f82bf1bc2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ff5bf506c5eaac3e276c6de3b41ae7a7690b56fe7ccc25885a7fe43d350fb627_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:2011f63c2e4c5b33f1c73fe8c5a3edc4bd3778f30731f2f212b2554788d4d606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:9019082c509a8b138495e556a921e2bc7c838a0e32833b6f0e69e3635f9a53d8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:cbe7f211f6f290dfc72e46f63af5050a1c70023d6b3a8c808f36c1adb7aaaeaf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:eda0234a522284b7fb4059ed32e5636485843dccb3df94e5a4057cd4391b86ec_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:0d4fc5f7d1e76a7c61e0e833fd03e12cf50fc924b34a49d025d8bbeb5624f0e7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:16d4d5b80b03ba84bd9f23ba29e17d53aea5f2a0d69c0d8446db3eab4b4f7b1c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:4ba521fd56675ffa7b20e01dc37087a44de3081b4474f0aa9196b9951d359475_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:b93697a11801e0c1a39d94d061a980c9efef9c0f4fce4096d15c4408b75fa187_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:69e1c8235fb31b4e6738dfe0d57b884a9aa60f8b95895b5311df2660a3c051c8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cb022ee77b366c10bc8c7d791ee3c5b91b0f4526dadca9bc191ab5b43ea9bc04_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:e5a62e2ea0b00703030de7d42e5c2c2b68c69cfb0614381ec49d376bf6cbc90b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:f51e1ee19c0a531e645313bded9b882dd9ff655b63fbb160a94bf8733ae17880_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:0e0e929dec6155ec4f9dd9be83766d611150fd7d90f4d9b43e655870a1e37d46_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2414db64c130c7fa7a4fc35701c14f6ae0368647364ff551798a3429d8ab8466_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:2a3297bb5bc10cd8563b99da518f04cd737a8c5f72357ba0d8c707bb3c3c316a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:bec77bb03b607cfc1df8037dc68bef8e66880763db3ae82c4cb5a214edd7b668_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:292f2fdf42a5c042e1585bf8e5301acebe6613beb6d15547996539c911175d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:3b5f55ef71cd2a17e67ab1b21e2e2d24f9d7e6052f5099f9ffcaa82d005a7d50_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:6e14c93c50a31f187397c9e6794a0ae7c269b1ce5439f89c381b041020cbd41c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:8b6a403835746385f97ad02f311fb471979ba70e3dbb162d7e334f5789118a2a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:1a1888e914648ae91177905388a6ccf823ce8578e595891a8c2814622308f64e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:721d21abbc1d2fe7b386e34b45b086a14a6b75c0d827417bcc6834caec7b06fa_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:a8970e51648b7635bec505932b5cd6475d0bd28486da18fbb83f1ab90decbf7e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:f50f173b75053fa20e3c53f286cd65b64ce96ccb6f4a3d58b4ca72e331aa5923_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:28eed6b57c5fcec3779fbe11c6f278b40817db8a7729523adcccbeb41fe1051e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:2c187017ddba8f24aef3d15e119dbe53d1131a9781847db082931cda77e34420_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:af4dfd3fcc0509ef4f487a9ea3bc034068e02556de20ee360b9c9f8c4df66616_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:f51776ea4d10f55c9161418724f929951d116bc4de263a48f15d58c9ad88b288_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:7a192e36bc609c66623348dc9f0469632b73025c55d37bea4b5e37d35aca460b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:f18711d06cb17e1c72379b32c7fc225b68056cfa74729ddba998fda68c8fc3c0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:0c1e7e917514bd3c54f4247accda8e1ff48715be1cf9775c82ecece7193042e1_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:6dc8d30fe8a0ec328b356d7c694fa977240865628a3ee4cac1225f964cb4bd78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:9ff6c0b03924f1a6eecd19aa9f974563b65e77e44ca1d3872ddb2569ff58b187_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:e768af8eaa3cbb88a403c39765d7a518082e7904ac3c843b922fc31496d2744d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:61cafa4fc9612d023e962ff65f8bc1e73cd4249e9dbd5810089091f03a918176_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:7072daa1617b5150c1c151679600918429da3624d2310ba7e1b66ff0854b016a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:87296654397a301c31453e53a948babc5fdf705b0c6200b43ab02593e4978d96_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:beda07b40d1e2ce0c51e554e19558a7c7ba1f0711a7cf3be512ebddb7073c4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:23e15c0248ef562e2473b89df8b82c2104b9f240e02d155c91055c2855c7b948_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:61e1093024b77d6286b62671ac4cc1aab924035c55ae0af0cfa794ecf694885b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:a9df8962191824cf9e1f080eb330b010ceb8dc9d51c8ecb759db57fa227aab42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:f3c930799fff498e197d533bdca3599f22925862ee43585077a2032f59f50dff_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:1ab166543c9668764548ed1a16efca1fc209ba8137064434601ac9c300ea20ca_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:76d6910a88b34af615075121a7aff94b8de24b19c574f3e2dddb75feb6751fe4_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:c0a0829011af545794d8aff60434349ea7087e10da9c9abc17653ff70478b036_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:ff1c8713a50aa214f223790f7b5e66c455cdce10672a7f211725e50203a4382d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:2ab10116549103d56e56ecf6024b64d3fddc615dbc12156a4f6be02d0369b823_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:344cbe110cbbfb78c05cfa96e1e32a6c01b8e374cfe1fc7f4d1ac641fb0dcfcd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bda0cbb87bcb5929a60d5174f145ae853be582007467ea21421e303552fdf3a5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:d20d52c5ae626d8cbe6afc967e56a0ae17af0772f8d4160a1bbb2b9f40550420_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:17118c75eafd3869bf2daa00b5d2c562757e33f45bde52213c3917df47df0aaf_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:1eccf42772a7757b765b82edee3f7d8913e4f0a33d32f4f019ac698c38ffe5cc_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2af5421eb0897911b3fd765926129f878dc4977671b1be948c066358db743da8_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:57e69a6eedbc3fdafb9bee319513f1365e5c3c100608205d913800adcd459660_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:5a5b39ad9d513f998ab6d6f0b33be9c16d288357ac1ab82226f4e4d20b9ac5d7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:9855dde9b94639473d0694dd4e06ef14a973123754d1f6fe8b8240de49a12118_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:afb003e2e9a1719e2e22b37537d46ae057a0a8adabf0b2e3ebb09cfdfcf54763_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:d331e76fc80167af9612a276ca87816115d6c113907dd2dd78445d74a21e1c3c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:913c0afa8a08a5da072c0ccf907afaf5a4b6cf797a6c16ddb37058d32e987e2e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:ad7718447e3d01b2cbf4bf5d7cb716467c2be62bd4943e9a60e56b32ab6e19ac_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:b0a79d1871b577c60c5e5dcc43cbf0a4ad22828d34ef725204495c82561b1028_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:c12d560ddfa3ab90555c6d714a34fcb337ca5e4ab15b2c4619524663dbd07f39_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:0b994011688be7aaa47c954155a33ab969ed28c80df7f2395b7a709ac79e3cdf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:37353326d1cdd6376929c05862ca95e6b3bd57b496ce016418a7b2947450e2d8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:6c554c5caadbd57af5365899a4a936c71ccf0f56a8a0677bc393061f1fb99c47_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:825690d4b5f3c839e64918d9bd1cf926862d83451e986c4009fbfd16340f0716_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:82e48825296a08cb3ea4f7c9385c629018d2509f2572b122baf08aaa9bac2a4e_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b21ad18d99f52cfd3d2a2b01e70dd7d4b722fa529037926ec210259e75c4e3ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:ce2d93caca226c63796805a840be16675a3a26cb0ecff62cb64e585f058a227f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:d1f8809b9406ea19b8fe609c21c0c9cd0ac86fdeaedc98b67cf41d78c27b0092_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:60b7b74ea2a9046c912d26c37e9ed38b540680bac61b87fef7821eda130a28d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:7ec0aea67eaccd2b0a0e50d7b9b6c74d5bd41115e6e461792f7ef6e343a7bb0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:9bbf46438901ec75495e0951ae614ba8de0ae82c466caac903005b5da939affc_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:c9fb587acfa48efd6c764d9faf57455f6b0106fb627764421260d153400b9c2f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:2bb4fcb39c9ec547cd65151f925fece33cf5632c509d46e1c90c3f0b7e6bd3b9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:441728dac463aa38acce70f6658dcb2f794813f105f21a37843c46ea33cba87e_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:60fbef3c07bd81f8e98844ef60b6791d722a5cd04faab49bd77259f061eef70b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:f49c75bb8ce103e08b22cf5da359037a3c41fe627616e6f1953fe60997c6d0bf_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0f3b86697b96b93408563977f9dd88e377e4bd9793b57e495aa6f06f3987394a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:268238d2438213c596d5e8a4ae0c202cf893cb9d17802217e305158cf0e4c314_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:828c01b0cb203f088e7cbf48ac33b3341690eca4bfa700deb412d85c8333c844_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:a7150f64baa894e724bdaac38192738ae283261546c3c50000e5be8aaf0f2962_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:09a082bb2a829105d1fe713fb04dffdf5c1948acbc7cd76f3a557436c8f580fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3166badd339956e289e2197579742d9a386fb4d943d66f68da1e6439739856fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:3235972effc8e9ddb44d735a1c18855f83618e427f1e0b5a1ca2bb9cb475170e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:4ebe8ad1c42a54a539bfc3ff589193e97d20f63fd774c3aa9b76ce2938e59ec2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:076a37997bff1356b72e63281c5ac5cc429bdc47d757f5a1e09ecfe3b9efd02b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:211193c6b1b1480f974aaf2feba3ca4a7a88b42d5b38e5c4dde0758c4f6656a2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5053a5cd3ac7d68afa18994d4aec5e20fd2ec5d902c27e01139e35d39b84957b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:8c8957469facb7526d3185da9ea6c3e35878068fb1ee21883a5ffe5ce7e90a13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:9f7ad00016ef01563034fcd4ab266539a8a4db5e351773e10402b5d3b621d8c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:bf2db967e29593736ad0a5838b309b28e57741258c0013f6a8a07dde7e6130a5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:df29b283f92fdaf54590fbe43f1699c4b606c70bb98156892dd6bdc00eb0063c_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:e862e7f2c84fa7da00191e04ce6197c5e36476e70bdc22566146393c960325f8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:54febe3d408af55d8ef7b325a786c80dc80b3c768df2fb0161e9c95ff674db24_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b6d01a929b57f557a37ffdf1df9f9130bbb3ca8bfed130be84f59c7ad62a0e46_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b8e5819d76cfedbe8ab016c8e21854743f014633150a8262800a53f6bb5cb4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:c20943074bafa64a4b15829af0155f8c18064dfcd9ea841b8596344293267114_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:02220f4eab6e2ffc9adc24b84b29d2c9f2cd10a66712c3be40c7ba7aacc8971b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:0783822a2118ed73314145e6419c7d1bb02b1c063d6989f7e570d3aa7c00d865_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:299c2d8ed9b9f4c4356be9c927e73bd00ac1a783608972245806575af91ff0e0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:38f90741374e5bc643683109df5591582af6e646e604d5ea67e23fbef459d65d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:0bfbb449c7bb22cabd6b315bac4a3f31fc15cefd9298fd751d37829c6d821a13_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:141517adb1f8c332fee1e04dca880c398f302e9bec6d673bc13ea58c33d19f43_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a16f46fdbf79853c2d68208ff93fc29ed0cd18b07da72ce71175af55aae9abcd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:a38551d9c8e4d44d2d955b30a12aeedb5b0edbbba690856e1dc3e81ca7a7337b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:77c81b32c1a95f5363b4d9916a802f84c9e2ecc474f15630a87d75b06f7bba32_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:b1b8cb0ff5b55bca3eda8d08a7c31fc58abcf7314495dc89422907bc61bf9a61_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:1251ca8a56e7aa53a6c32a2b5368a9c178bd2a0d96b1be0aec555c557f9d0a34_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:2d6bd402d42cfd160e65269c2957a725e60624397b01de50311129534b3c7890_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7e18ecf6e009623dc86503b65c09170ce0b8173209ba7408c8df072d0f24a0db_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:7ef7b7630808336647af2684b39fa9915a843fae94934814d4abf58c3ce90208_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:5d14068b3d45e5e2bdd6c0cb29dda60358856395f587c47a2f84a188a250d1f3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:70dad2d63c8191b297e64032cac60f3683307e5bcd588dcc67ffb5b801ea362a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:9f1797806c78d051bc674d9fb110ca3a2c5399bf1529fadf39b7295dec1612ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:a2bd1bac78f69b4c7c5e164639aece3e68e90986a5800cad930da6da14125c55_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:d90a9064658c3519aab31f812b2ab1c9813b7d48f8680dad1c53bc1c72be5493_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:f2603d2a45e084ffa2e43cbcb7085c7cce63f27d47144bc16594e8e14269a423_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:0ef12a69fdba687826523d7a02b4d7510c012b87ea3b5ae138de14e5d599a8f6_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:234831b05b7aecc1437f0afa8c18df3a9ad03526df43335d5884e0abd774a92b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:695b84024bdf7fa7dc44dc464627b1b1b5e320190f850a5d76786bc4a17494c4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:dccd5f4cba2fb06576a8fea2ac3585ee52eeac03b3cc112a5f0fadf70ed20745_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:144f0383349ee8d03a993a584b751aca7dabe654d0ce87bfd4f70d03f78dcbcf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:6883340e563afae63684c8856f622d4f1dcd8f51f699b20b72c81c18cc2c160f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:7ff6086dfb5f90d4cb1623c7851ee151df4ce0e8a34d3d13f30524cb30b40011_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:e8bcf23173167cd128b8e126c9ae109255eeceadcfe5e6b7815e86f6e91c5999_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:46d523991749ad1c0e8a2f1f918c035dff4c8a3cb88233bfa0fe18200824b07f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:7db9404ca04462e04b9b7222a1cb6b6afcebe0979fa6e7e0a59d87df1d23e621_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:ccc0af7f7b2cd50a0d10d18fc71e65f01e6e3a90634c208ed56db82ba8f5aeb5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:f795eca810d0480f3ecb37700f03739790f6c75ee76065e72aa05b1bc0b254e0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:1ad2a81376a800639e75ff82bdb9d36da16a94a852ba3f054656deaf4856ff79_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:6a6085b52bef07f6bfc8422c8864729db8ac2ef12416078d518d89cde6a1ce13_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:9ee4d95b467bf699c067bfc4934d9d9746cc29eed21a600afd986bfab051eccd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:cc7c47e390382de37c0250e09668b183528490ab8aa9b5cb52ff369fb99e9e13_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:1d7d986cab34248f9e3b66f736f441004462e3a7ac1769342d8051f19fe5d20b_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:206bb7c9e47996cbc927521cdf0549026ed89e7e71e6bf837745cb788fb7b070_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:434d8e00e7dbc26f84d379d9a260a5a7c8b0df5235be56d6ddabc2112c7aed5c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:f0e1373527fc7992f7e6b5ddd981afd1af7fa7fb29a8480d9f48559b73b1801f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:3ede9a2dd1cb92f03bda44ae80cc71379026beeddf64c8cb1f29cc1844f07194_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:55a546285a90550889a25cfff932a174ef749cb345e39b50f1d4da3fa13e14da_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:6860de5410f125f8c49a12e35d4f817b7b14eabe23507d850e3270bc6e88b511_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:c103add77eeee3b04009d883e0de4e573d0f125c8fc5a90ece248c7e04125c96_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:59a39b030f60361a55affd5dbf631edaf9938ebdf2b9dd87e364a6cb50e7d3c3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:8b6de214904f7ed94d0cc18cf9e262e5c1062ab80ee1339386eb1fa742aa681b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:c7113984887877c9682d0b2df84982ec04b0f691a8da072be96cb92212bbac30_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:ef008a65ca0a0dc6a75b70cb0a159792e8c52812bab3ce3bb427a661da36d9ac_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:0b0ce6be834b7d7de1e48273fb0d865942b1b052eb49c32f571c3725beb3646f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:1569cf555d757889b9a55dfac5fdf53dbb0e14cb9541b2c1ae04c47dbf883baa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:b514e2eb450f4873970e5689b583fefdf072cf634dad49da108b7ee44153b8ad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:f8c61fde29b28912e9fb0ffed5f07cfd47ba17243f1c6d8211747d0050659df2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:52c3d1d727f69f834f4489af83249af52ac3a0d91e3b28fc91e3129fd05b245f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:c3de91f39e21902be35f3c653f3bc7c210735ae9a94648efafb0556b0d7ed452_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:d265d7fc5eab10e28ffa7681846772e85ff35c518dc7cf43291956abb217d7f9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e0596c6e7ac326361739c0490f07c073005df5b1bedc23c8ded55c8012910192_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:096c3284f0a2e35b289fe5419f28440e9249157d6cec65944fc83e26d9892d0d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:978fb4f3e5bd722baf793ea1a3d3f8a8c56b492d8a80424d0e5be5fa3ecf2a42_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a88ccee0448a981eba5f93b61dc673140666a7af36d68059d3cc4457d95139ed_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:dcf4628658d8ef637873ebb9d5eb25e6a73e8f27cc308aeb00cbd409b0915198_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:2cfa5e20779b7214c4cd256a268e824459b993ea927de7e0973d68ce9d5510fb_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:5bb7c5ad8f25666e6f97fe640caae7b8ac6c13c0d9ef3bb05a0cf33455cd7700_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e2662c59772a9c646bb9623678b477e373834334ff76a6e43cb279e487200495_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:e5c699fc3a3d77bff5afb0c034eb4c2a05d3e8fb86cd39d0d912328f82610ce2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:782fa25bd9e03a5ab4aa5b58608b8441dff74eef1df428fc3438f9fdf759611d_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:b803d364566b9b683ebd94421892d31c6297175c48ccaf3ee3ea2a60c21b63a7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:7c2a90ced0b9968d2ccb79c41d15944252e3d08f39a3e5057634a392cbe24727_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:101d244d7808fb64180cd21d45c0991549c929e72a21cc000125f122f7afab1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:ec84abfa674676df31cdebbed429af01dedd8e44bbaed0e856162e2ccf172a3b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:ef2fb4b0ececd24079e8b7e8293e97ba1d274e12c28b3db98940a391a4e82a87_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:1b261581b7492b132b356be582abc8d2d247e6f6ff9fca3449dce9a51580102d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:5d73ef451c89a7774023ec0fe768995d028ab9e23321fa9f5666f82be221379a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:6224c4b87b62bf61fa1341e61431cbf57e7975fc926084e80f5f9656616f99ce_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:8ceaab9ce8283363f7e3b20c28486d729dff2748d627d772c3a6f0fa3ca29cd4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:36ac7a5fee10344a8c3f924f786d6e7bea791da0f8d1873dc708972fbeef180f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:5f8756a1387709e0006d46067a34dedb433a436dfe5a868ea51aff94bfb603fa_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:cca4341a06447de1b2a866322cc3c450296ae36284881c5c413c461e5dc04d1f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:ff72975899921e8ce9e28e1548215791670f6aab992ce6005bdfeb9b8e665004_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"
}
]
}
RHSA-2026:23247
Vulnerability from csaf_redhat - Published: 2026-06-10 08:05 - Updated: 2026-06-29 12: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.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_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.19.33 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.19.\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.19.33. See the following advisory for the container images for this release:\n\nhttps://access.redhat.com/errata/RHSA-2026:23246\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.19 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.19/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:23247",
"url": "https://access.redhat.com/errata/RHSA-2026:23247"
},
{
"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_23247.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.19.33 security and extras update",
"tracking": {
"current_release_date": "2026-06-29T12:50:49+00:00",
"generator": {
"date": "2026-06-29T12:50:49+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23247",
"initial_release_date": "2026-06-10T08:05:49+00:00",
"revision_history": [
{
"date": "2026-06-10T08:05:49+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T08:06:28+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:49+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.19",
"product": {
"name": "Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.19::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:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Aeb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780040878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780044093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Affdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780041850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780045019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780041464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Afbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780041815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1780040288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3A15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1780462485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780462320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3Abd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780041028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780040318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Ae37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780040120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ac129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780456073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780040498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780042165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3Afda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780457085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780455003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1780040358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ab59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780041659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3A0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780044975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3Afd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780040864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Aaea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780041903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Af4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780041009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780041081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780041800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780043168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3Aadb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780077894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3A66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1780462315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780044055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3Ae83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780040967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780040154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780040932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780044566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780040485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Ab1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780455037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780457105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780041058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780043163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3Ac1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780040815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3Af6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780040191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780041712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Ad903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780040435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780457112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780041042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3Afb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780041343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780040859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Af8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780040901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3Affd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780040103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780040182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780040461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aa403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780044635"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3A8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780040878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Af44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780044093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Af47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780041850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780045019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780041464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3Aae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780041815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780462320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780041028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780040318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3Aea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780040120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3Ad3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780456073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3A8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780040498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780042165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780457085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3Ae1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780455003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3Ad6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1780040358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Ab7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780041659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780044975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780040864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3A11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780041903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780041009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Ab97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780041081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3A87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780041800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780043168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780044055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780040967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3A54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780040154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780040932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Abf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780044566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780040485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780455037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Ab314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780457105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780041058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3Ae5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780043163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780040815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780040191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780041712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3Afc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780040435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3Af6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780457112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780041042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780041343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3A1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780040859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3Af33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780040901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780040103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780040182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Af38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780040461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780044635"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-event-proxy-rhel9@sha256%3Ad65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9\u0026tag=1780040878"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3Afdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780044093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3Ab40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780041850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3A8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780462320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780045019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780041464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780041815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-p4sdk-rhel9@sha256%3A375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9\u0026tag=1780040288"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-intel-ipu-vsp-rhel9@sha256%3Afd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9\u0026tag=1780462485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-infiniband-cni-rhel9@sha256%3A9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9\u0026tag=1780041028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780040318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780040120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780456073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9@sha256%3Abf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9\u0026tag=1780040498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780042165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780457085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780455003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1780040358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3A7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780041659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Aa7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780044975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780040864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Ab3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780041903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3Aa22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780041009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64",
"product": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64",
"product_id": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/sriov-cni-rhel9@sha256%3A84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9\u0026tag=1780041042"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3A7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780041081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Ab8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780041800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3Ae6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780043168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-container-rhel9@sha256%3A18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9\u0026tag=1780077894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-efs-csi-driver-rhel9-operator@sha256%3Aa09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator\u0026tag=1780462315"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3A1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780044055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9@sha256%3A5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9\u0026tag=1780040967"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-filestore-csi-driver-rhel9-operator@sha256%3Ad4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator\u0026tag=1780040154"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3Ad8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780040932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3A3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780044566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780040485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3A211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780455037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3A5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780457105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3Af437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780041058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780043163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-metrics-exporter-rhel9@sha256%3A93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9\u0026tag=1780040815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-rdma-cni-rhel9@sha256%3A99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9\u0026tag=1780040191"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3Ad2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780041712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780040435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ptp-rhel9-operator@sha256%3A33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9-operator\u0026tag=1780040117"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"product_id": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ptp-must-gather-rhel9@sha256%3A075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel9\u0026tag=1780457112"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-dp-admission-controller-rhel9@sha256%3A68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9\u0026tag=1780041343"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-config-daemon-rhel9@sha256%3Ac611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9\u0026tag=1780040859"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-device-plugin-rhel9@sha256%3A9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9\u0026tag=1780040901"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-rhel9-operator@sha256%3A9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator\u0026tag=1780040103"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-sriov-network-webhook-rhel9@sha256%3A4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9\u0026tag=1780040182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3A8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780040461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3A8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780044635"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-nfd-rhel9-operator@sha256%3A7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator\u0026tag=1780044093"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9@sha256%3A8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9\u0026tag=1780041850"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"product_id": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-clusterresourceoverride-rhel9-operator@sha256%3A7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator\u0026tag=1780045019"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-cni-rhel9@sha256%3A32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-cni-rhel9\u0026tag=1780041464"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-daemon-rhel9@sha256%3A33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-daemon-rhel9\u0026tag=1780041815"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-dpu-rhel9-operator@sha256%3Adb4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-dpu-rhel9-operator\u0026tag=1780462320"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9@sha256%3A6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9\u0026tag=1780040318"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"product_id": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ingress-node-firewall-rhel9-operator@sha256%3A114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator\u0026tag=1780040120"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"product_id": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-compare-artifacts-rhel9@sha256%3A5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kube-compare-artifacts-rhel9\u0026tag=1780456073"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-diskmaker-rhel9@sha256%3A9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9\u0026tag=1780042165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-mustgather-rhel9@sha256%3A5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9\u0026tag=1780457085"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"product_id": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-local-storage-rhel9-operator@sha256%3A6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-local-storage-rhel9-operator\u0026tag=1780455003"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"product_id": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/nmstate-console-plugin-rhel9@sha256%3A144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel9\u0026tag=1780040358"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"product_id": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-node-feature-discovery-rhel9@sha256%3Abee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9\u0026tag=1780041659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ansible-rhel9-operator@sha256%3Ac88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-ansible-rhel9-operator\u0026tag=1780044975"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capacity-rhel9@sha256%3A73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-cluster-capacity-rhel9\u0026tag=1780040864"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-dns-proxy-rhel9@sha256%3Abe508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9\u0026tag=1780041903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-router-rhel9@sha256%3A5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-router-rhel9\u0026tag=1780041009"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-helm-rhel9-operator@sha256%3Af35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-helm-rhel9-operator\u0026tag=1780041081"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubernetes-nmstate-handler-rhel9@sha256%3Aeb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9\u0026tag=1780041800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"product_id": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubernetes-nmstate-rhel9-operator@sha256%3A1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator\u0026tag=1780043168"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-egress-http-proxy-rhel9@sha256%3Aa3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9\u0026tag=1780044055"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9@sha256%3A57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9\u0026tag=1780040932"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"product": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"product_id": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/metallb-rhel9-operator@sha256%3Ab19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/metallb-rhel9-operator\u0026tag=1780044566"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9@sha256%3A81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9\u0026tag=1780040485"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-driver-rhel9-operator@sha256%3Aefd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator\u0026tag=1780455037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-secrets-store-csi-mustgather-rhel9@sha256%3Aeadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9\u0026tag=1780457105"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9@sha256%3A7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9\u0026tag=1780041058"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-smb-csi-driver-rhel9-operator@sha256%3A9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator\u0026tag=1780043163"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9@sha256%3A37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9\u0026tag=1780041712"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"product": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"product_id": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/pf-status-relay-rhel9-operator@sha256%3A1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/pf-status-relay-rhel9-operator\u0026tag=1780040435"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9@sha256%3Ae34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9\u0026tag=1780040461"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vertical-pod-autoscaler-rhel9-operator@sha256%3Aa6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator\u0026tag=1780044635"
}
}
}
],
"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:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64 as a component of Red Hat OpenShift Container Platform 4.19",
"product_id": "Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64"
},
"product_reference": "registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.19"
}
]
},
"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.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_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.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_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-10T08:05:49+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.19/html/release_notes/\n\nDetails on how to access this content are available at\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23247"
},
{
"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.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_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.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:114ef923113d96b60db2dc2387fa3bc1a0549eb6d0ae4cdaf9ea8982f4285318_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:3d167008ccf6f63d957b0882236b91026bbd5d24ebcc8d86064dbfd8adbee92e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:e37d0d4163fe1457d80d61b3e2d12688a7be8ed0ac80b541512e012e8d2e24e5_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator@sha256:ea44f914f208c07cd12e532f20d7dcb75920d48b666e74e04d571263f2ce116a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1c3674f71c4b67865c3ca7887afe31bd920b4f9b1d7b9b4d8821e86fcd1cf683_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:1e19eafa7ac35dab19ec4f1ea574e1b30d8745612291fa17d5106e8c33107cc0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:3a5e292104de60e27933c0c5f4a31eb6cb5b6e8dd1798322c82bb9eafb66b5bd_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ingress-node-firewall-rhel9@sha256:6ade312a63c3bfedd24b4c28c41c367976447e8e339b409278b85d0a6fecab2f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5747333958f5c0fb29f895213eb949e5349523e8246e47892677f73b933cd98c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:5aa3196510e54fe6c8d7f18051a54277d95a6a4aaafa4fce418906d19376473f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:c129d71da1ab488e87735c6dac89f45105b25874e214b87a190c1463545c0698_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kube-compare-artifacts-rhel9@sha256:d3793610be59df42532d7fffacec4cfb5d4db727cfdb3adbec246c8291acee73_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:1cc46e949b1b62497fade1bc0f70ba3c31897f0852a0bd624d646f77467865f7_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:607def146433e715e5a2df2937f98a2fc846c62fa141544623e2f0505b54f509_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:7ee76b9716737a2e468f8c7adc13219ce1b1935db7807934c4fe991041d86bbf_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator@sha256:e6376e4589e439fd425fe4e994282f3cf430c88270e22bade5ab37c0b16a8538_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:3b60b56e833a8ddba21fb801e9842393cb8d9c8490860a70d7fa84ee78a3f4a9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:6d655b10e00e22ab5c838154688a2847d8eb03c5349fa20ea3577c3d3a594f6c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:b19b7c39f18d13ca2b54d5309e5862e2add9daf78a708e2797e440e162410752_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9-operator@sha256:bf60500c40f536a4b7d81cd68e205c3d0dbe0a7929e57157aa986704ce3fa829_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:085eaba935de5205cbf93d2565d95c604fd47953fd633f0e6dff09e2b5a6b5cb_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:57a27f485283135ea1ab5859d8a0217069c2353af1c21fc245bc7e926319b940_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d8198f09a7ef3689b3a0762be6d29cf8cbb7d26a308982e5eb754c171e9ca6df_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/metallb-rhel9@sha256:d938a83b34fbaef6b1ab61e85dd8c36bb19f9591bbd042c95353691b75954e4f_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:144ccbf16668bcb6d96b8975b52dea9d92b9a9dcabf21813afdebbf9186dbcb4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:250522cc8b989d6a9ee1658e0b52333f83f969b6b527a0fcab58495e8fed6b85_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d2b4b1927af8eeb63f3f6a4df7954e6a7c58b570ce4cdef02e9eddc3b18534a8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/nmstate-console-plugin-rhel9@sha256:d6f4005c71765d0158b613b7739abae3f9926ab2fd8f1841b073ce17f73971e2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:0e3f11dc6f035a33d0c3c97d4865713ea3bcc9fd547ffe8e2d6d9d64d0d9b3f6_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:a7ba8f745cc71e041ef17053dc9f96d0f29985c732c5a4aef6a5151622f53b0c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:ba58b3eb38de3c51a36ecae5700a31207bb2b0daa44335107f30f943f3677d8e_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ansible-rhel9-operator@sha256:c88c685915756417aa976346fc81213c7a2f41c2acd6154d2ad5c09be6df97b4_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:18430385d072dde157521ebb79dca77153e6b2ad8fdb59bb39189e9a519b95f9_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel9@sha256:adb4f4d9094ab4bf3491509d9fafb38e394df4aeacf88ff34f0294a20deb17f2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:66579a9fcf71c7ccf4462a592313bb91250e868537910824682c1b9c51fa20a9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel9-operator@sha256:a09cd514541799a297913d41bd97fc787d35e0a46a232619bf88fe5c6a5fbb3f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:8a3c63d86c33105737d6e0b2333c80d162f0a314a5c9e131296ca1a1f75df9f2_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:d65adcd68ca6c02cb4c14e4ec1e0a1576845e351922f562da87725e873442e34_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel9@sha256:eb7b0b7e8c0445a038941e9d9b9c131d284508b53b3bd42e26e0fa8a48c8f8a3_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:08edb2ccdda82a321b689d0a3cce8c0c860433d799fceec6d6795bcf979ce606_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:41dfa1716c9f69464a00c6ed902b4bf6bb22f7d50c28739049313559d9de96b2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:73f233eae99af3978fa6fb44b8c92dd8db074fffc038705fba93df8c4dc162f2_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-capacity-rhel9@sha256:fd8e511fc91f65f85d48baab461018a85a227ce0c3aa029ad9e11d5144495aad_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:784c641e82a3990801f6d3b46c8809607b882f8d8df155a3caf79f28556eb3e7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:7b4a4663faf36553708910609e3ffbacf674849cf6f6eb88b60744250116ef91_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:f44a9fc3253693c7d7e5aa923c336f483636f25362242ed6b07dd345848d1330_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-cluster-nfd-rhel9-operator@sha256:fdc8d3bd1c6b80925b4a581fb5aedcebc86d9bf235cae576f5ae28e04924f4b7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:20e12ce56a7aaa2c2cd3ac2c8b302a0cf42ea1fafb651fdc469cae9c50b72a2f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:6d089ae62f567c6eb93e78b6e72e09752e6e05e6820b466f26f11c2d253d30a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:7f06b5e7a15c97a8bd9772c1ca9502cc05dbb0c8d7443ef4fa8e38cd810f5d22_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9-operator@sha256:9d8232aada62eee3c8b297e441c2e28f922d69007035f9bf6be15b52fb8b7619_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:8ee7f284e24d09153b85c637a2ddc10f3eb33718e76b87a449a676e3b37260d9_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:b40d3a45ff8cc754e4bca79df5ccb253c32e062290dfe2ee0d9c2247ea549279_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:f47d17bb504a470ab17bfbffb720cd9573bb18325dec5e00c45703866c92cb4d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel9@sha256:ffdbf0d88a5a631f7c9e3df27375ab4b0b0b32038582f9abc268d7884263e6fd_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:27eab5e4b52eaa463dca5446bce5e624523167ee286350480f229368bd829bc7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:32c5c32d205b31f88edb3897e6ae9be343bd0d84ed44c9707e938797e700e001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:379f936c23c23c937ecf759055f829bf5f5fac7fe4c34a1d6646302562c8c55c_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-cni-rhel9@sha256:3b3b345d217276abe1a307ad0fae3023f07e293f1a375a325b61c8295e8d3a29_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:0611e05f9282529b414d5c6a182c7ff01df4b17b410e095552634267394c8086_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:33edd10e61fc83a41b7356de65e43a8c08c7a1016c69d38a404d182d702a3fdd_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:ae52d665c5c33792060a06d10cdeb44960e8845c2330f8977c076a9039f1617d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-daemon-rhel9@sha256:fbc1aa563468f0732cada98bba0748378f96a7b278c85f81cf8c2fc3c52701ec_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:25f4075f2ef53d5740d4bd2c232e69ebda24503e2be359db7af59ff764c400d7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-p4sdk-rhel9@sha256:375e738658030cda6c739c07554d7cce4164343982c60796f327d0d81107e212_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:15d9de1f8e6461f06c215523e366a26209d7a0c5e83d969542c3f5d39d746858_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-intel-ipu-vsp-rhel9@sha256:fd58dd5bfb717470a7b3cd33d9b5bf16ecfca74ab4d77b016109f4542eec93a4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:0a9341444c305e86e577a188973dda121d6d2e019011c919740bc0b222fe8bae_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:6da3bddbc242d0408fab103f6a76e14b8bcb1f0966f76447c1c8a4412ec9e15f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:8bf9b83e7e0731e40f26d89beda1a079ce99e30e634786408d85885965e24fcc_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-dpu-rhel9-operator@sha256:db4824ad6004803152e19859bf1d3c8e622604feafca2bd59c00f243d528fe10_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:11afeba6ea40f3bf6d877eebaafaf6defe8b6e180c89597db502702fc8bcc898_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:aea3b46588e86c404b95e24e8569fe9348ef651ee7fd9faaf20862423a164478_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:b3af6ffd9484f79e878c4870925649165db3645206e917d65b6d00794a9a975a_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-dns-proxy-rhel9@sha256:be508cdb4222dd991880fd04cb1917041702d68f06c176c6b4ec85e03206a3c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:1e6b47db72fb86676b722c3c7c9b04de6b9b279f4831dbc779d46276110684ea_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:497efb6b5cb7d70a83af4114d93393048f9bf22355504fc1917a72fc72954121_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:5fe8eb20461a2c0cc07fcc9ab13824c4c9796e3965aca7a72db0eb9d5b863e67_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-http-proxy-rhel9@sha256:a3f0e86fba2b0dcad7073fa33b1ae8560d4ad7e4a9f5cd416924ca0dad3795c0_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:5161122185118fdc6ce7df1f48a2d8c8a5fae485103812c578c1d6b4cae99ae8_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:7339b31f323e061d50cc319be12b79c98422734e1bb5c2f572debc8743cd779b_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:a22b4f3fd3cb2be035ec75575635b2ae12da07ec5a3cd07f20888cf34016eb56_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-egress-router-rhel9@sha256:f4e509baf9b8aa3352cf3f5406a21074e65d23534ca3b3addef878b4539d76f7_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:1512013a5cbd632bae49d35ac50117e5aa759e5ad2de7ab4310cef101eed15a2_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:54d6a6edfc830a5aec2ab3bd74bd6625768f5f4ce8d62d46fb9319528cbefd87_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9-operator@sha256:d4f678f5e42bbca8b5ce791088b5a733d8ca925b2bf616d097be1a4b9cc1dc8f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:2a53b574f15f7adac14ff7cdfb45b6ff91664cc0c0c2507e90ceed93a93db015_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:5573d0eebd2c590ac5679f1d5965d3fa68dc10d5e142bc01a59591b66631ed3e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel9@sha256:e83dbbbb8460622ffb518de526446d3dd9bf254dddeb03fefb629d3f586fa9e8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:7e4eb87d938923e7a886f8afc69678aa18027f07888217f534a5203f4b649671_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:8a99359a02e88473cabe8eeec44d4e09780f00e7cfbe069c44f2afbd9e587752_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:b97b580e099603a217ae8f902c10edad8187b2e510eef1ec086b64931b36af44_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-helm-rhel9-operator@sha256:f35d76f4702055645c782dbaf7b0ea7b09b89dd139a940b78a9f03a7330f585f_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:87709e6de32710f8a0e4ed7853b87cc0103beee557297ba2de5ed55ceb576201_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:8b19234585580832c6e46741f14bc3f4448eb56977a49d519985fbb606cb735a_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:b8c7b57e4063899db3bc1fd0caed6f7ffadf1ddc7b24594a494c0478021d6de1_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel9@sha256:eb555d921f01da6ab67adf9c63a92703db90b2f7bfaa9fc535520e39a98cb001_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:42f21d3e4008c7eda0e61a860a58e1f86cf7c66bd55e95b6938e3de225278319_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:5fe76888367f1b68d650f3ea25f8c3a4680d25858809cac2ba726796f1500460_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:6781389a47dcdfbeab918b33e0efd76b80aa18018179fc543ed744f639553387_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-diskmaker-rhel9@sha256:9c54b7bfc616e4d57bd028e37a8dd526bbb8e74481346a89b22ed7d21f0923be_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:5a5426da90ea78e182b41c8f663f7242a42fb425222cb01d7dd99ca126452142_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:6e9601ba0525432741f5d02da323f9be0c1962cd623c74b3753fbeafddd83130_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:82f69d0661fc1d4426830f139870273ecadd4c8dbe7a36333eecd3d011646f4a_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel9@sha256:fda0a91d236054cf9c4920e97cb00af324560d4685e7c21994aa4ac783278ff8_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:064dab3e931fb0f366e56c410a46c01883410a0f2bafa0e1492e0c3a195f1013_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6c1efd4fd1d169ffcf3ccec1558fc5ac1aab318a956fc661e0ce7c2ffc1f5d28_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:6f122eb4a3110b4ebafb91dc862bc2eff0aa9e4c089538241f67292fa5d21676_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-local-storage-rhel9-operator@sha256:e1959d7fdc0438e8a28e010643f41bc36f53fc8be56c069944524ede1732a692_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:7dfab62c175f7f48c77b29f0b3d46397a5e8936e37a2516019810408cd7d045b_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b59e013a309d5ad88eb9478d2f3c7836abe26b85d7c224e6cfb78f2476bfe876_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:b7cebf8b6f3be9283db76a91a7e3416c5535ebe191e079c3d13a1d222536b818_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-node-feature-discovery-rhel9@sha256:bee58c6794a0cf752aec7cc9b00571275656f2846c0ef48d86a1c087e0898539_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:33fe3a3b9173f54544a82170b53eb2870905b2d77515f4f9ed2d5445eefea6e8_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:3fe2c6973e6ee347f75fe7a84f4f880546c0bc3d123c5ecf1748c8326b19cb02_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9-operator@sha256:f6fa4e8c48935270ecc080276897261a2c8cfe73970147dc50648498bc103c36_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:101a8559fa228470a1e11e0cee164a6b82dcd75367bd7ac795d937f588d786d0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:8af4a056764d76ac02115fff9f4214ddf0e6f68f2faaa330ba01451388fd9c78_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-ptp-rhel9@sha256:bf2c9d3fd42fb5a6c742ed07bbcac64c3b3eb6a56228a57822eca3a4e1de6e0e_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:211db6d6b59f34797341eb419d36060b2fb41faa9c977d3fba140ab4f864e6c5_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:94c3005c8ccaa5427efb1054b99df96c1de8c6c08cae14563d2389d5ceb3b3c9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:b1905cdb4a45c0bd318e9dfbe6372913043c0718e666dcdb731d6cfc5804dceb_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9-operator@sha256:efd541e4f514070553f984cc3c07ee729ef376bfa7b29446011d363198cfb2d6_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:1c4c04599771be19d16a150c9205856bdcabb5a51336ccb95bb78bc611be0fe0_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:36c55bfc53537ab7df88710285e0969a9e25ae301513a6c8ad011f63ca83b561_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:6ba9c743002e58e48c4c52d2ea7156f26e755c92ad2ef74c40a801f9fd7e6c39_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel9@sha256:81956e5aacc13cb267296af7ccb9dd17023c9190ab213a8c064677d33d0fff55_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:3ec61f45cdfdee727b270b03552f7bf86f6aaff8413379729833ae9c90d8b770_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:5f8cea9fec563c55b29dcc8c2c46cf81e8f786b061eadc3772d11250d2afd4e2_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:b314a0d42942c140efc44586982def43fb3574a24c700c12c7b0d795fe3078a9_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel9@sha256:eadd141c3c320b6ee0b963d58fe19ac5fdfab27bc6fee897be52ec743ff880fb_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:11a9981adcd7bb642bf138ebbbf6fcf73ff2061e47154b5431bb839350966886_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:239f170434807d94076d45bd459ef18e5d34fc65201970187aa321c9b58fb006_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:9a8eb33c46ab9233eeb1e4f14e537d7252ffd9fe54127840209e7c96b49c320a_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9-operator@sha256:e5d09b4551ee41b7e27f321a11493f6afea3d65fb9675cd26877f98bdc86b578_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:3f19bc6c312fc8db8ee25721da22385ff5b142f9ab0214956906e1107a2b87bf_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:6619f7fb4daff134db9bfa365782a14c57f721fa06f0aae4181461e305d8837f_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:7573ff34e16f8ddb5c62996f44eb3c5890a99abd440ac2e22f0bebf842548105_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-smb-csi-driver-rhel9@sha256:f437c911fbcea9e146b6e04a04e224e82c157458f6982a39a6d7faf6853acc73_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:33d3bb0ad39556e19b4c269aac49ccd7a6fd929b7be2433212504899e002b123_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:68deff64544d594f4fcc5efe8ed798feab08629b4adc337847fa9698da23bd90_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-dp-admission-controller-rhel9@sha256:fb43eae1e25f6e2e2139a50ae02faf6338fba62663e36acf7f7d22ffaea6d735_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:316e6f698eb5885ffe91306088d6896d01c3a2ca53fb572967f9f81d10ab8434_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:9a8ce968494de62057f6e2658ea674041a42b07b226ee78c93d191405fdec963_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-infiniband-cni-rhel9@sha256:bd2f03b23722edeebb13af4869e1d251a35a9eeea3e8791aa8504fa67a276c50_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:1b3d6ed4bfba73f11ae4d99d0cc2f18ad5ec0722804e294ebc3e4ff66dfc26ee_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:5d0d92fb780539dbc7742c11387762018946c4d5d4ece1453d02e31c6138815c_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-config-daemon-rhel9@sha256:c611d96a267e29a5e7c1b4c076e3f2c81c278c764b194e54c83528b698d99727_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:9a0b840de139dbdcc27317a4ff081ca8a9b5a05fd44f691dd4d0c19e693557c4_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f33a7ea65b9495d6fb0359185d18fb2d0ec466b79a77cd3401e0314f21791440_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-device-plugin-rhel9@sha256:f8dd9d5acfef8b81f5ad4f6da41bb5c684f078d2bf94540baa65ef1da16bb717_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:81ea6dfac240c2b058b9b79acf0d06c60643e8d7cb367cb62c872ba34bf37816_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:93fddb0dce21abf94b15d45fcfd8bbe8fafb2bb4808a8e5fc3c66e4786dcf672_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-metrics-exporter-rhel9@sha256:c1d1cb3ba43b0daa7653c094d720e5ebfe039b3f5e31bcd7251da9af9707d731_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:4421acf308b664037fe9ef85dfcef6c603dae00f9bad5601ec7d7cc6d2c3f1e7_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:9ef02afa2bea4516b776b09c23cb3508e01e80ad52baf8ebebe11923ec4e5f17_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-rhel9-operator@sha256:ffd972e9e2a67ebebd19b74cac979029a31e1f14f4951d36e73539228fa77a03_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:03082a4feda5e9b000a3bdd903a95ddf7108984f0c2ea6e817f82f7914b30dd4_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:300b90198b168d2969e8ec50ab4e339a69926ef4878652a15e463ebfe6200890_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-network-webhook-rhel9@sha256:4ded4d5bf84dac4aaac22f438e4e97d141398d6550405ed717a6183b3fc3044f_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:0acb8a4e498b08a69e672e223449feef87fae0f7979a0727a59a477fbf7da2af_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:99fc985e04b39b5ce05218387bc94d1fe917a3594104f0d754a1f830675c11f7_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-sriov-rdma-cni-rhel9@sha256:f6d3a0d265214ef1d810fde2a7ab13b46ebd4a09b19d541ac4d39fce7917d9df_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:24e40b45a314f19f8cbebf2406cacfd0adb43109a943ded486b53b4f765fc5da_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:8f45cfe6dbd7d73d7f30a9dfc8e62ff30d3a8daa204c5ff16d766952ed2d4a35_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a403a3c3fa39d383205181e639140f1d18b14cef8bc360db40d8f43900da1695_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9-operator@sha256:a6b601517b214122b9d942d284b9532d49ef023b2edad94eb0f3f7703642169d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:448dbc6045e79ede0be73b4fdd427bc2bbb6edb083324b58aa78e0588b992605_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:8885c6de6b7d6c3ffc2058c632797923d841987387736494904b74fbdb51d0ee_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:e34e0c7319d51a9abf80bc3d473296c917d69979af6bf0936958fe30cb9d6c42_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel9@sha256:f38d33b91ed52cbd0157cb555b223213262bf9eea9de3746a53fd2ce10a5b5dd_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:1c0fa242de2d3c2d739ea9ac51d4f33b63facf174f359af694ecd34409b20619_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:4db1be93126daad6e32e64aae3503cdfe013d7c1161d49c5bce1c33b9b412361_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:d903affbfa3d5725424d14e156d28ff3746e4286339159a297295625450e361b_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9-operator@sha256:fc627b36ddfc8a70856658f65f0585ba0606839b30e51ed4c1f879e0a17eda2d_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:026854588d53a38eaf12a6bc6cf4b31e7dc7ee37fb4c85b1abc37a6660ce842c_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:22cc5377dff78b5d356f1501bd544242eca077a06727af1d8d77ee5fd62e8cd9_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:37deed09168a5f1317984ba1c179debeceb83e2192090866c3f63a218c0a346d_s390x",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/pf-status-relay-rhel9@sha256:d2677f00c33f22d2684d2aafa9a64a22da3bb3164c0bb0eef23a6af35873ef0d_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:075b332cb658c1002ede2e22296ebac43b330c11b8e10d8c784d05dacb82e6da_arm64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:57fbc4e7b13066f385344f11cc17c79c2c36636a3d0e3f9ef32fe4dd8ab9f531_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/ptp-must-gather-rhel9@sha256:879b3eb974f79f6702d4987ef333fb652e3289f128d83c041f0a6b77bbb0b751_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:13d00741a89e5ebcc5b6f8348125d4c93d2e3e1d54ef3431ee1b16672db45637_amd64",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:59a35984b2d617804bf4aa67b1b23a6b6419efde6d40231a7a968de337eb1529_ppc64le",
"Red Hat OpenShift Container Platform 4.19:registry.redhat.io/openshift4/sriov-cni-rhel9@sha256:84155829415ad4c26c55237357caed308ed60607de39de647b5336ab6bba0814_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:23345
Vulnerability from csaf_redhat - Published: 2026-06-04 14:16 - Updated: 2026-06-29 12:50No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the 'leafnode' configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Go's `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.>` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon's privilege comparison logic, the system may incorrectly accept a plugin's requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system's integrity and confidentiality.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a '<' character not followed by a '>' character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Workaround
|
A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings This issue affects Apache Thrift: before 0.23.0. Users are recommended to upgrade to version 0.23.0, which fixes the issue.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — | ||
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x | — |
A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": "Multicluster Global Hub v1.6.2 general availability release images, which provide security fixes, bug fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact of Important. \nA 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.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat multicluster global hub is a set of components that enable you to import one or more hub clusters and manage them from a single hub cluster.",
"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:23345",
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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-32283",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32285",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"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-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33215",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33216",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33217",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33218",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33219",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33247",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33413",
"url": "https://access.redhat.com/security/cve/CVE-2026-33413"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33487",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33813",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33997",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34040",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"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-40890",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41602",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41603",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41604",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41605",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41606",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41607",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-41636",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-43869",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"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": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-21728",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"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-27137",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27889",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29785",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32281",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32280",
"url": "https://access.redhat.com/security/cve/CVE-2026-32280"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_23345.json"
}
],
"title": "Red Hat Security Advisory: Multicluster Global Hub 1.6.2 security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:45+00:00",
"generator": {
"date": "2026-06-29T12:50:45+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:23345",
"initial_release_date": "2026-06-04T14:16:54+00:00",
"revision_history": [
{
"date": "2026-06-04T14:16:54+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-04T14:17:04+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:45+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Multicluster Global Hub 1.6.2",
"product": {
"name": "Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_globalhub:1.6::el9"
}
}
}
],
"category": "product_family",
"name": "Multicluster Global Hub"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1780167118"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1780320809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1780321673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-operator-bundle@sha256%3A51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle\u0026tag=1780370487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779839087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779839762"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1780167118"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1780320809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Aa1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1780321673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Ad8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779839087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779839762"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1780167118"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3A564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1780320809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3A2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1780321673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3Af9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779839087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3Aff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779839762"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-grafana-rhel9@sha256%3A11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9\u0026tag=1780167118"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-agent-rhel9@sha256%3Aba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9\u0026tag=1780320809"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-manager-rhel9@sha256%3Af2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9\u0026tag=1780321673"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-rhel9-operator@sha256%3A262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator\u0026tag=1779839087"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"product": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"product_id": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicluster-globalhub-postgres-exporter-rhel9@sha256%3A556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9\u0026tag=1779839762"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64 as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x as a component of Multicluster Global Hub 1.6.2",
"product_id": "Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
},
"product_reference": "registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x",
"relates_to_product_reference": "Multicluster Global Hub 1.6.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4427",
"discovery_date": "2026-03-18T14:02:19.414820+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-21728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-24T09:00:58.144273+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461395"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tempo. A remote attacker can exploit this vulnerability by sending large queries to the Tempo service. This can lead to excessive memory allocations, potentially causing a Denial of Service (DoS) by impacting the availability of the service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "grafana/tempo: Tempo: Denial of Service via large queries",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-21728"
},
{
"category": "external",
"summary": "RHBZ#2461395",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461395"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-21728",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-21728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-21728"
},
{
"category": "external",
"summary": "https://grafana.com/security/security-advisories/cve-2026-21728",
"url": "https://grafana.com/security/security-advisories/cve-2026-21728"
}
],
"release_date": "2026-04-24T08:00:47.074000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "grafana/tempo: Tempo: Denial of Service via large queries"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"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-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509"
},
{
"cve": "CVE-2026-27889",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:01:58.261703+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451447"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker can exploit this vulnerability before authentication by sending a specially crafted WebSockets frame. This missing sanity check can trigger a server panic, leading to a Denial of Service (DoS) for affected deployments that use WebSockets and expose the network port to untrusted endpoints.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27889"
},
{
"category": "external",
"summary": "RHBZ#2451447",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451447"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27889",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27889"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27889"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-03.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-03.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-pq2q-rcw4-3hr6"
}
],
"release_date": "2026-03-25T19:36:36.370000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed WebSockets frame"
},
{
"cve": "CVE-2026-29785",
"cwe": {
"id": "CWE-409",
"name": "Improper Handling of Highly Compressed Data (Data Amplification)"
},
"discovery_date": "2026-03-25T20:01:35.121898+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451444"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker can exploit this vulnerability by connecting to a NATS-Server instance where the \u0027leafnode\u0027 configuration is enabled and compression is active. This pre-authentication flaw allows the attacker to trigger a server crash, resulting in a Denial of Service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29785"
},
{
"category": "external",
"summary": "RHBZ#2451444",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451444"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29785",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29785"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29785"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-04.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-04.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8",
"url": "https://github.com/nats-io/nats-server/commit/a1488de6f2ba6e666aef0f9cce0016f7f167d6a8"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-52jh-2xxh-pwh6"
}
],
"release_date": "2026-03-25T19:38:44.587000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via leafnode compression"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: crypto/tls: golang: Go: Denial of Service vulnerability in certificate chain building"
},
{
"cve": "CVE-2026-32281",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2026-04-08T02:01:00.930989+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456333"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go\u0027s `crypto/x509` package. A remote attacker could exploit this by presenting a specially crafted certificate chain containing a large number of policy mappings. This inefficient validation process consumes excessive resources, which can lead to a denial of service (DoS) for applications or systems performing certificate validation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw occurs during the validation of otherwise trusted certificate chains that contain a large number of policy mappings, leading to excessive resource consumption. Exploitation requires an attacker to present a specially crafted, yet trusted, certificate chain which would require the attacker has already compromised a trusted certificate root. Red Hat continuously monitors certificate authorities and curates the set which is trusted by default for Red Hat products.",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32281"
},
{
"category": "external",
"summary": "RHBZ#2456333",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456333"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32281",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32281"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32281"
},
{
"category": "external",
"summary": "https://go.dev/cl/758061",
"url": "https://go.dev/cl/758061"
},
{
"category": "external",
"summary": "https://go.dev/issue/78281",
"url": "https://go.dev/issue/78281"
},
{
"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-4946",
"url": "https://pkg.go.dev/vuln/GO-2026-4946"
}
],
"release_date": "2026-04-08T01:06:58.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Denial of Service via inefficient certificate chain validation"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-32283",
"cwe": {
"id": "CWE-764",
"name": "Multiple Locks of a Critical Resource"
},
"discovery_date": "2026-04-08T02:01:16.213799+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456338"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/tls` package within the Go (golang) standard library, specifically affecting TLS 1.3 connections. A remote attacker can exploit this vulnerability by sending multiple key update messages in a single record after the handshake. This can cause the connection to deadlock, leading to uncontrolled consumption of resources and ultimately a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update 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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32283"
},
{
"category": "external",
"summary": "RHBZ#2456338",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456338"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32283",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32283"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32283"
},
{
"category": "external",
"summary": "https://go.dev/cl/763767",
"url": "https://go.dev/cl/763767"
},
{
"category": "external",
"summary": "https://go.dev/issue/78334",
"url": "https://go.dev/issue/78334"
},
{
"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-4870",
"url": "https://pkg.go.dev/vuln/GO-2026-4870"
}
],
"release_date": "2026-04-08T01:06:57.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/tls: golang: Go crypto/tls: Denial of Service via multiple TLS 1.3 key update messages"
},
{
"cve": "CVE-2026-32285",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:54.925687+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451846"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/buger/jsonparser. The Delete function, when processing malformed JSON input, fails to properly validate offsets. This vulnerability can lead to a negative slice index and a runtime panic, allowing a remote attacker to cause a denial of service (DoS) by providing specially crafted JSON data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32285"
},
{
"category": "external",
"summary": "RHBZ#2451846",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451846"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32285",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32285"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32285"
},
{
"category": "external",
"summary": "https://github.com/buger/jsonparser/issues/275",
"url": "https://github.com/buger/jsonparser/issues/275"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4514",
"url": "https://github.com/golang/vulndb/issues/4514"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4514",
"url": "https://pkg.go.dev/vuln/GO-2026-4514"
}
],
"release_date": "2026-03-26T19:40:51.837000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/buger/jsonparser: github.com/buger/jsonparser: Denial of Service via malformed JSON input"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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-33215",
"cwe": {
"id": "CWE-290",
"name": "Authentication Bypass by Spoofing"
},
"discovery_date": "2026-03-24T22:01:19.032191+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451021"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A remote attacker could exploit this vulnerability by manipulating MQTT (Message Queuing Telemetry Transport) Client IDs. This malfeasance allows for the hijacking of client sessions and messages. This could lead to unauthorized access to sensitive information or disruption of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33215"
},
{
"category": "external",
"summary": "RHBZ#2451021",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451021"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33215",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33215"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-06.tx",
"url": "https://advisories.nats.io/CVE/secnote-2026-06.tx"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-fcjp-h8cc-6879"
}
],
"release_date": "2026-03-24T20:55:53.455000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "nats-server: NATS-Server: Session and message hijacking via MQTT Client ID malfeasance"
},
{
"cve": "CVE-2026-33216",
"cwe": {
"id": "CWE-213",
"name": "Exposure of Sensitive Information Due to Incompatible Policies"
},
"discovery_date": "2026-03-25T20:02:03.000174+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451448"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance server for the NATS.io messaging system. For MQTT deployments utilizing usercodes and passwords, the MQTT passwords were mistakenly categorized as non-authenticating identity statements (JSON Web Tokens - JWT). This misclassification leads to the exposure of these passwords through monitoring endpoints, enabling an attacker with access to these endpoints to gain sensitive information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33216"
},
{
"category": "external",
"summary": "RHBZ#2451448",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451448"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33216",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33216"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33216"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-05.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-05.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099",
"url": "https://github.com/nats-io/nats-server/commit/b5b63cfc35a57075e09c1f57503d31721bed8099"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-v722-jcv5-w7mc"
}
],
"release_date": "2026-03-25T19:41:55.670000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Information disclosure of MQTT passwords through monitoring endpoints"
},
{
"cve": "CVE-2026-33217",
"cwe": {
"id": "CWE-425",
"name": "Direct Request (\u0027Forced Browsing\u0027)"
},
"discovery_date": "2026-03-25T20:01:47.815937+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451446"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. When Access Control Lists (ACLs) were configured for message subjects, these controls were not correctly applied within the `$MQTT.\u003e` namespace. This oversight allows MQTT clients to bypass the intended ACL checks, potentially granting unauthorized access to sensitive message subjects. This vulnerability could lead to information disclosure or unauthorized message manipulation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33217"
},
{
"category": "external",
"summary": "RHBZ#2451446",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451446"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33217",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33217"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33217"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-07.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-07.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-jxxm-27vp-c3m5"
}
],
"release_date": "2026-03-25T19:43:40.969000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.1,
"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:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Access control bypass via unapplied ACLs in MQTT namespace"
},
{
"cve": "CVE-2026-33218",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-25T20:02:13.680355+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451450"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server, a high-performance messaging system. A remote attacker, by connecting to the leafnode port and sending a specially crafted malformed message before authentication, can cause the nats-server to crash. This vulnerability leads to a Denial of Service (DoS), making the server unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33218"
},
{
"category": "external",
"summary": "RHBZ#2451450",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451450"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33218",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33218"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33218"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-10.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-10.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-vprv-35vv-q339"
}
],
"release_date": "2026-03-25T19:53:12.075000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nats-server: github.com/nats-io/nats-server: NATS-Server: Denial of Service via malformed message pre-authentication on leafnode port"
},
{
"cve": "CVE-2026-33219",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-03-25T20:01:41.235854+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451445"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. A malicious client connecting to the WebSockets port can cause unbounded memory use before authentication by sending a large amount of data. This resource exhaustion vulnerability can lead to a Denial of Service (DoS) for the server, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33219"
},
{
"category": "external",
"summary": "RHBZ#2451445",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451445"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33219",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33219"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33219"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-02.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-02.txt"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-11.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-11.txt"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-qrvq-68c2-7grw",
"url": "https://github.com/advisories/GHSA-qrvq-68c2-7grw"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-8r68-gvr4-jh7j"
}
],
"release_date": "2026-03-25T19:55:28.363000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Denial of Service via unbounded memory use in WebSockets"
},
{
"cve": "CVE-2026-33247",
"cwe": {
"id": "CWE-214",
"name": "Invocation of Process Using Visible Sensitive Information"
},
"discovery_date": "2026-03-25T21:02:07.985713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451486"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NATS-Server. If the NATS-Server is configured with static credentials provided through command-line arguments (argv) and the monitoring port is enabled, a remote attacker with access to the monitoring port can view these credentials. The /debug/vars endpoint on the monitoring port exposes an unredacted copy of the command-line arguments, leading to information disclosure of sensitive authentication details.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33247"
},
{
"category": "external",
"summary": "RHBZ#2451486",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451486"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33247",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33247"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33247"
},
{
"category": "external",
"summary": "https://advisories.nats.io/CVE/secnote-2026-14.txt",
"url": "https://advisories.nats.io/CVE/secnote-2026-14.txt"
},
{
"category": "external",
"summary": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv",
"url": "https://github.com/nats-io/nats-server/security/advisories/GHSA-x6g4-f6q3-fqvv"
}
],
"release_date": "2026-03-25T20:02:18.868000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/nats-io/nats-server: NATS-Server: Information disclosure of credentials via monitoring port and command-line arguments"
},
{
"cve": "CVE-2026-33413",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-03-26T14:03:01.896580+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451728"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in etcd, a distributed key-value store. Unauthorized users can bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients. This allows them to access sensitive cluster topology information, disrupt operations through alarms, interfere with lease management, and trigger data compaction, leading to permanent data loss and disruption of critical workflows. This vulnerability can result in information disclosure and denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "etcd: etcd: Authorization bypass allows information disclosure and denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in etcd allows unauthorized users to bypass authentication or authorization checks when the gRPC API is exposed to untrusted clients and etcd\u0027s built-in authentication is enabled. This can lead to information disclosure and denial of service. Typical Red Hat OpenShift Container Platform and Kubernetes deployments are not affected, as the Kubernetes API server handles authentication and authorization independently of etcd\u0027s internal mechanisms.",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33413"
},
{
"category": "external",
"summary": "RHBZ#2451728",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451728"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33413",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33413"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33413",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33413"
},
{
"category": "external",
"summary": "https://github.com/etcd-io/etcd/security/advisories/GHSA-q8m4-xhhv-38mg",
"url": "https://github.com/etcd-io/etcd/security/advisories/GHSA-q8m4-xhhv-38mg"
}
],
"release_date": "2026-03-26T13:36:10.919000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"category": "workaround",
"details": "Restrict network access to etcd server ports to ensure only trusted components can establish connections. Implement strong client identity at the transport layer, such as mTLS, with tightly scoped client certificate distribution. This will limit unauthorized access to etcd functions.",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "etcd: etcd: Authorization bypass allows information disclosure and denial of service"
},
{
"cve": "CVE-2026-33487",
"cwe": {
"id": "CWE-347",
"name": "Improper Verification of Cryptographic Signature"
},
"discovery_date": "2026-03-26T18:02:32.278778+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451814"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33487"
},
{
"category": "external",
"summary": "RHBZ#2451814",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451814"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33487",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33487"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33487"
},
{
"category": "external",
"summary": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc",
"url": "https://github.com/russellhaering/goxmldsig/security/advisories/GHSA-479m-364c-43vc"
}
],
"release_date": "2026-03-26T17:17:51.101000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue"
},
{
"cve": "CVE-2026-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"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-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
},
{
"cve": "CVE-2026-33813",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-21T20:01:02.224363+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460221"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang.org/x/image. A remote attacker could exploit this vulnerability by providing a specially crafted WEBP image with an invalid, large size. This could cause the application to panic and crash on 32-bit platforms, leading to a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33813"
},
{
"category": "external",
"summary": "RHBZ#2460221",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460221"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33813",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33813"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33813"
},
{
"category": "external",
"summary": "https://go.dev/cl/759860",
"url": "https://go.dev/cl/759860"
},
{
"category": "external",
"summary": "https://go.dev/issue/78407",
"url": "https://go.dev/issue/78407"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4961",
"url": "https://pkg.go.dev/vuln/GO-2026-4961"
}
],
"release_date": "2026-04-21T19:21:27.644000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang.org/x/image: golang: golang.org/x/image: Denial of Service via malformed WEBP image parsing"
},
{
"cve": "CVE-2026-33997",
"cwe": {
"id": "CWE-266",
"name": "Incorrect Privilege Assignment"
},
"discovery_date": "2026-03-31T03:01:29.529297+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453277"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This vulnerability allows for a privilege validation bypass during `docker plugin install`. Due to an error in the daemon\u0027s privilege comparison logic, the system may incorrectly accept a plugin\u0027s requested privileges that differ from those approved by the user. This could lead to unauthorized privilege escalation for installed plugins.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "An important flaw in Moby, an open-source container framework, allows for a privilege validation bypass during `docker plugin install`. This issue stems from an error in the daemon\u0027s privilege comparison logic, which could lead to unauthorized privilege escalation for installed plugins. Red Hat products that leverage Moby and allow Docker plugin installation are affected.",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33997"
},
{
"category": "external",
"summary": "RHBZ#2453277",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453277"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33997",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33997"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33997"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9",
"url": "https://github.com/moby/moby/security/advisories/GHSA-pxq6-2prw-chj9"
}
],
"release_date": "2026-03-31T01:36:51.404000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "moby: docker: github.com/moby/moby: Moby: Privilege validation bypass during plugin installation"
},
{
"cve": "CVE-2026-34040",
"cwe": {
"id": "CWE-807",
"name": "Reliance on Untrusted Inputs in a Security Decision"
},
"discovery_date": "2026-03-31T03:01:34.530713+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453278"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Moby, an open-source container framework. This security vulnerability allows attackers to bypass authorization plugins (AuthZ), which are mechanisms designed to control access and permissions within the container environment. The bypass of these plugins can lead to unauthorized operations and potential compromise of the system\u0027s integrity and confidentiality.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Moby: Moby: Authorization bypass vulnerability",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34040"
},
{
"category": "external",
"summary": "RHBZ#2453278",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453278"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34040",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34040"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34040"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/releases/tag/docker-v29.3.1",
"url": "https://github.com/moby/moby/releases/tag/docker-v29.3.1"
},
{
"category": "external",
"summary": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2",
"url": "https://github.com/moby/moby/security/advisories/GHSA-x744-4wpc-v9h2"
}
],
"release_date": "2026-03-31T01:36:48.205000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 8.4,
"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:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "Moby: Moby: Authorization bypass vulnerability"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_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-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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-40890",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-04-21T20:02:56.729456+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460245"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/gomarkdown/markdown, a Go library for parsing Markdown text and rendering as HTML. A remote attacker could exploit this vulnerability by providing a specially crafted malformed input. Specifically, input containing a \u0027\u003c\u0027 character not followed by a \u0027\u003e\u0027 character, when processed by the SmartypantsRenderer, can lead to an out-of-bounds read or a panic. This can result in a denial of service (DoS) for the application, making it unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting Red Hat products that utilize the `github.com/gomarkdown/markdown` library. The vulnerability occurs when the `SmartypantsRenderer` processes specially crafted malformed Markdown input containing an unclosed \u0027\u003c\u0027 character, leading to an out-of-bounds read or application panic. A successful exploitation may lead the application using the library 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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40890"
},
{
"category": "external",
"summary": "RHBZ#2460245",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460245"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40890",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40890"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40890"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778",
"url": "https://github.com/gomarkdown/markdown/commit/759bbc3e32073c3bc4e25969c132fc520eda2778"
},
{
"category": "external",
"summary": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7",
"url": "https://github.com/gomarkdown/markdown/security/advisories/GHSA-77fj-vx54-gvh7"
}
],
"release_date": "2026-04-21T19:51:53.237000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/gomarkdown/markdown: github.com/gomarkdown/markdown: Denial of Service via malformed Markdown input"
},
{
"cve": "CVE-2026-41602",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:16.099816+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463407"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Apache Thrift TFramedTransport Go language implementation. This integer overflow or wraparound vulnerability could potentially allow an attacker to cause unexpected behavior or resource exhaustion, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41602"
},
{
"category": "external",
"summary": "RHBZ#2463407",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463407"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41602",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41602"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41602"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/6",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/6"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:06.646000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/apache/thrift: Apache Thrift: Integer Overflow in TFramedTransport Go implementation"
},
{
"cve": "CVE-2026-41603",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-04-28T10:01:29.782287+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463411"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of server certificates, where the hostname presented in the certificate does not match the expected hostname. A remote attacker could exploit this to impersonate a legitimate server, potentially intercepting or altering sensitive communications and leading to unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname 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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41603"
},
{
"category": "external",
"summary": "RHBZ#2463411",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463411"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41603",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41603"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41603"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/7",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/7"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:19:40.564000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Security Bypass via Improper Certificate Hostname Validation"
},
{
"cve": "CVE-2026-41604",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:47.903741+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463416"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability could allow an attacker to access memory outside of allocated bounds. This could lead to information disclosure or potentially a denial of service (DoS) condition.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41604"
},
{
"category": "external",
"summary": "RHBZ#2463416",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463416"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41604",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41604"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41604"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/5",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/5"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:13.996000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41605",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-04-28T10:01:54.269412+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463418"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This integer overflow or wraparound vulnerability could potentially lead to unexpected behavior or resource exhaustion, which may impact the availability or integrity of the system. The exact consequences depend on how the overflow is triggered and handled within the application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41605"
},
{
"category": "external",
"summary": "RHBZ#2463418",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463418"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41605",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41605"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41605"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/4",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/4"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:20:44.319000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.7,
"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:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Integer Overflow or Wraparound Vulnerability"
},
{
"cve": "CVE-2026-41606",
"cwe": {
"id": "CWE-606",
"name": "Unchecked Input for Loop Condition"
},
"discovery_date": "2026-04-28T10:01:19.136351+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463408"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. An uncontrolled recursion vulnerability exists, which could allow a remote attacker to trigger a Denial of Service (DoS) condition. This occurs when the affected component processes specially crafted input, leading to excessive resource consumption and system unavailability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41606"
},
{
"category": "external",
"summary": "RHBZ#2463408",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463408"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41606",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41606"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41606"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/3",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/3"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:12.815000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Denial of Service via uncontrolled recursion"
},
{
"cve": "CVE-2026-41607",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-28T10:01:33.022623+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463412"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This out-of-bounds read vulnerability can lead to the disclosure of sensitive information or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41607"
},
{
"category": "external",
"summary": "RHBZ#2463412",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463412"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41607",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41607"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41607"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/2",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/2"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:21:48.502000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"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:H",
"version": "3.1"
},
"products": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: apache.com/apache/thrift: Apache Thrift: Out-of-bounds Read vulnerability"
},
{
"cve": "CVE-2026-41636",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-04-28T10:01:03.992199+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463404"
}
],
"notes": [
{
"category": "description",
"text": "Uncontrolled Recursion vulnerability in Apache Thrift Node.js bindings\n\nThis issue affects Apache Thrift: before 0.23.0.\n\nUsers are recommended to upgrade to version 0.23.0, which fixes the issue.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion",
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-41636"
},
{
"category": "external",
"summary": "RHBZ#2463404",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463404"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-41636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-41636"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-41636"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/28/1",
"url": "http://www.openwall.com/lists/oss-security/2026/04/28/1"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql",
"url": "https://lists.apache.org/thread/lb4j0zyd5f3g36cos0wql925przpnwql"
}
],
"release_date": "2026-04-28T09:22:14.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "apache.com/apache/thrift: Apache Thrift: Node.js skip() recursion"
},
{
"cve": "CVE-2026-43869",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-05-05T08:00:56.417384+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2466660"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Apache Thrift. This vulnerability involves improper validation of a certificate with a host mismatch, which could allow a remote attacker to bypass security checks. By presenting a specially crafted certificate, an attacker may impersonate a legitimate server or client. This could lead to a security bypass, potentially enabling unauthorized access or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate 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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"known_not_affected": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43869"
},
{
"category": "external",
"summary": "RHBZ#2466660",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2466660"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43869",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43869"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43869"
},
{
"category": "external",
"summary": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r",
"url": "https://lists.apache.org/thread/3hsgl1b69wzq3ry39scqbv2dhyl3j52r"
}
],
"release_date": "2026-05-05T07:25:48.611000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-04T14:16:54+00:00",
"details": "For 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.15/html/multicluster_global_hub/index",
"product_ids": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:23345"
},
{
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"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": [
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:51353652e207a04ede5c7f0f11ddc82150f2ca79a110a5e85d8c6e13ccdfa8f5_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:564d1f145c46663a04b05f5210388c27e888714911bcafb19bfb8a88821becc6_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:7e1aeac1da9e9c9ac413b8f9380a911e89c4c81fe5dd38656bb301ddb0918ccf_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-agent-rhel9@sha256:ba4697a2a94a5bb6e4b5e5edeebe04f24125f910ae158d070cecf73374d959f0_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:2b11ee4ff5d5a5dce7cd2c03b1cf088e27cf23816b1f5e9dfc11a136052a9542_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:56e32b74a97b5211573194b1358613d07fd967944c0bde22eb1f9b61ef1ff1b8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:a1dc9d34a9b9dd90eedec8b4bf5d246066ff8c964142376d190e72eca5eb6d03_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-manager-rhel9@sha256:f2784cac203f5ecb3d9de7f1312af0aa5ada9b673ab1c3188d839e1e13a3146b_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-operator-bundle@sha256:51bf429464a9e7f1b928bb60acb5cabc4491741884ac8e85fdee56092a2b03e8_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:07a4a707ac56ea0fb5b805e58e535cbd7503c71027ccb5a9a412e63ced8db831_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:1c2e24a5caf18deaf56a4f9e7bae8e013de18b64e3bad8560b959d595e11272e_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:556fff489ab3d6794c3cef4c10d09ceda194b02a9bf8a7bf1542e40802adeec6_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-postgres-exporter-rhel9@sha256:ff7d02b17b98ef8f65368c6b93e76e4ceb683411af5c3037484acb0508f31ea1_s390x",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:262ad6cee9e2176214103ecd866dd502d2d68b24b9f9be08e934f8fa3a285176_arm64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:3e619a5807582f6b5d7f50909667b9e0e3391f0166a3c322988d3b534f8cf103_amd64",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:d8b6bfdd948e9b0b423a240d2538eefa3bfd742635c27ee0db23c7af96657c4a_ppc64le",
"Multicluster Global Hub 1.6.2:registry.redhat.io/multicluster-globalhub/multicluster-globalhub-rhel9-operator@sha256:f9aab6b75117767d41e24dee791df45d42758c70c5d5ef6b435564e73b3c1d6f_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Apache Thrift: Apache Thrift: Security bypass due to improper certificate validation"
}
]
}
RHSA-2026:24484
Vulnerability from csaf_redhat - Published: 2026-06-08 13:25 - Updated: 2026-06-29 12: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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x | — |
Vendor Fix
fix
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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Tekton Pipelines. A tenant with permissions to create TaskRun or PipelineRun resources can exploit this vulnerability. By omitting the Git API token parameter and pointing the serverURL to an attacker-controlled endpoint, the system-configured Git API token (such as a GitHub Personal Access Token or GitLab token) can be sent to the attacker. This information disclosure allows for the exfiltration of sensitive API tokens.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Tekton Pipelines, a system for declaring continuous integration/continuous delivery (CI/CD) pipelines. An authenticated user, able to submit `ResolutionRequest` objects, can exploit a vulnerability by injecting malicious commands into the git resolver's revision parameter. This allows for the execution of unauthorized programs on the resolver pod. Successful exploitation can lead to the exfiltration of all cluster-wide secrets, resulting in significant information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x | — |
Vendor Fix
fix
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": "The 1.21.2 GA release of Red Hat OpenShift Pipelines Operator..\nFor more details see [product documentation](https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines).",
"title": "Topic"
},
{
"category": "general",
"text": "The 1.21.2 release of Red Hat OpenShift Pipelines Operator.",
"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:24484",
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"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-33211",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"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-40161",
"url": "https://access.redhat.com/security/cve/CVE-2026-40161"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40938",
"url": "https://access.redhat.com/security/cve/CVE-2026-40938"
},
{
"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_pipelines",
"url": "https://docs.redhat.com/en/documentation/red_hat_openshift_pipelines"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_24484.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Pipelines Release 1.21.2",
"tracking": {
"current_release_date": "2026-06-29T12:50:45+00:00",
"generator": {
"date": "2026-06-29T12:50:45+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24484",
"initial_release_date": "2026-06-08T13:25:01+00:00",
"revision_history": [
{
"date": "2026-06-08T13:25:01+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-08T13:25:18+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12: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 Pipelines 1.21",
"product": {
"name": "Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_pipelines:1.21::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Pipelines"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-linux-amd64.tar.gz\u0026checksum=sha256:1d83c432b0e6c0822ab587bab9c328f0d51953171cce2ba397de02d21034bfc3\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-linux-arm64.tar.gz\u0026checksum=sha256:2dbb63184ee7948c98658ae99f675f41ac976a2efc1396be16e36b9fec177186\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-linux-ppc64le.tar.gz\u0026checksum=sha256:50e064755c3104b35b5883655dee2bb2cd352dad6e7685c391f81c6017613211\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@s390x",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@s390x",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@s390x",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-linux-s390x.tar.gz\u0026checksum=sha256:e2510c70aceb3ee68d3b7086f01fd9270973d41720c77ce9f53d9a9dd40ee675\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-macos-amd64.tar.gz\u0026checksum=sha256:268eba587e7c566344e539f1731840a02b9ed0ff4cb351dd65e0c246041254d4\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "amd64_darwin"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-macos-arm64.tar.gz\u0026checksum=sha256:31b832afad8633c63b531c64c4d349c5f776d1a43f0b52095271ee967c1b346a\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "arm64_darwin"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-windows-amd64.zip\u0026checksum=sha256:25fbcc9e8235dcdadc64865c8d8dd630260c28bb7c81a827dd7288353db735d4\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "amd64_windows"
},
{
"branches": [
{
"category": "product_version",
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"product": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"product_id": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"product_identification_helper": {
"purl": "pkg:generic/serve-tkn-cli-1-21-serve-tkn-cli@1.21.1?filename=tkn-windows-arm64.zip\u0026checksum=sha256:afcb8312ad7934d31bac0977e67c805d723cbd528d2dc07db5c5cb1a2a36b9a0\u0026download_url=https://developers.redhat.com/products"
}
}
}
],
"category": "architecture",
"name": "arm64_windows"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64 as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@ppc64le as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "serve-tkn-cli-1-21-serve-tkn-cli@s390x as a component of Red Hat OpenShift Pipelines 1.21",
"product_id": "Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
},
"product_reference": "serve-tkn-cli-1-21-serve-tkn-cli@s390x",
"relates_to_product_reference": "Red Hat OpenShift Pipelines 1.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",
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@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-08T13:25:01+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"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-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. 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 OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33211"
},
{
"category": "external",
"summary": "RHBZ#2450554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450554"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33211",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33211"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33211"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c",
"url": "https://github.com/tektoncd/pipeline/commit/10fa538f9a2b6d01c75138f1ed7ba3da0e34687c"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5",
"url": "https://github.com/tektoncd/pipeline/commit/318006c4e3a5"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd",
"url": "https://github.com/tektoncd/pipeline/commit/3ca7bc6e6dd1d97f80b84f78370d91edaf023cbd"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae",
"url": "https://github.com/tektoncd/pipeline/commit/961388fcf3374bc7656d28ab58ca84987e0a75ae"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e",
"url": "https://github.com/tektoncd/pipeline/commit/b1fee65b88aa969069c14c120045e97c37d9ee5e"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db",
"url": "https://github.com/tektoncd/pipeline/commit/cdb4e1e97a4f3170f9bc2cbfff83a6c8107bc3db"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78",
"url": "https://github.com/tektoncd/pipeline/commit/ec7755031a183b345cf9e64bea0e0505c1b9cb78"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-j5q5-j9gm-2w5c"
}
],
"release_date": "2026-03-23T23:55:54.089000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-08T13:25:01+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@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-08T13:25:01+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"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-40161",
"cwe": {
"id": "CWE-918",
"name": "Server-Side Request Forgery (SSRF)"
},
"discovery_date": "2026-04-21T17:02:07.015859+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460173"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines. A tenant with permissions to create TaskRun or PipelineRun resources can exploit this vulnerability. By omitting the Git API token parameter and pointing the serverURL to an attacker-controlled endpoint, the system-configured Git API token (such as a GitHub Personal Access Token or GitLab token) can be sent to the attacker. This information disclosure allows for the exfiltration of sensitive API tokens.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure of Git API token via user-controlled serverURL",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate impact information disclosure flaw affects Tekton Pipelines. A user with permissions to create TaskRun or PipelineRun resources could exfiltrate the system-configured Git API token by directing the serverURL to an attacker-controlled endpoint and omitting the token parameter. This vulnerability doesn\u0027t affect a couple of Red Hat supported products as it\u0027s using a Pipelines version previously from 1.0.0, where the affected code is not present.",
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40161"
},
{
"category": "external",
"summary": "RHBZ#2460173",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460173"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40161",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40161"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40161",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40161"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/issues/9608",
"url": "https://github.com/tektoncd/pipeline/issues/9608"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/issues/9609",
"url": "https://github.com/tektoncd/pipeline/issues/9609"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-wjxp-xrpv-xpff",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-wjxp-xrpv-xpff"
}
],
"release_date": "2026-04-21T16:26:27.381000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-08T13:25:01+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"category": "workaround",
"details": "To mitigate this issue, ensure that the Git API token parameter is always explicitly provided when configuring Tekton Pipelines. Additionally, restrict permissions for creating TaskRun or PipelineRun resources to only trusted users to limit the attack surface. Review and enforce policies that prevent the use of user-controlled serverURLs without proper token authentication. Configuration changes may require a restart or reload of affected services to take effect.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"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 OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure of Git API token via user-controlled serverURL"
},
{
"cve": "CVE-2026-40938",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-21T21:02:16.557479+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460292"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, a system for declaring continuous integration/continuous delivery (CI/CD) pipelines. An authenticated user, able to submit `ResolutionRequest` objects, can exploit a vulnerability by injecting malicious commands into the git resolver\u0027s revision parameter. This allows for the execution of unauthorized programs on the resolver pod. Successful exploitation can lead to the exfiltration of all cluster-wide secrets, resulting in significant information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/tektoncd/pipeline: Tekton Pipelines: Arbitrary code execution and secret exfiltration via malicious git commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important flaw in Tekton Pipelines allows an authenticated user to achieve arbitrary code execution on the resolver pod by injecting malicious commands into the git resolver\u0027s revision parameter. This vulnerability happens because the `revision` parameter is passed as a positional argument to the `git fetch` command without any previous validation whether the parameter\u0027s value doesn\u0027t start with `-` character. Combining this lack of validation with the fact the function which validates the repository URL explicitly allows a repository URL to being with `/`, translating to a local filesystem. An attacker with enough privileges to perform an operation which trigger resolvers to use the `ResolutionRequest` function can \nchain both behaviors to trick Tekton Pipelines to load and execute an arbitrary binary on the resolver pod.\n\nExploring this vulnerability may be considered of a high complexity as an attacker needs to either know an existing valid git repository located at a predicable path already in the resolver pod or a default URL configuration pointing to a local filesystem\u0027s path.\n \nA successful exploitation of the flaw can lead to the exfiltration of all cluster-wide secrets, posing a significant risk to the integrity and confidentiality of the OpenShift environment. Additionally, depending on the data included in the `kubeconfig` files, an attacker may achieve privilege escalation or perform lateral movements within the targeted cluster.",
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40938"
},
{
"category": "external",
"summary": "RHBZ#2460292",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460292"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40938",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40938"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40938",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40938"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/releases/tag/v1.11.1",
"url": "https://github.com/tektoncd/pipeline/releases/tag/v1.11.1"
},
{
"category": "external",
"summary": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-94jr-7pqp-xhcq",
"url": "https://github.com/tektoncd/pipeline/security/advisories/GHSA-94jr-7pqp-xhcq"
}
],
"release_date": "2026-04-21T20:45:24.658000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-08T13:25:01+00:00",
"details": "Red Hat OpenShift Pipelines is a cloud-native, continuous integration and\ncontinuous delivery (CI/CD) solution based on Kubernetes resources.\nIt uses Tekton building blocks to automate deployments across multiple\nplatforms by abstracting away the underlying implementation details.\nTekton introduces a number of standard custom resource definitions (CRDs)\nfor defining CI/CD pipelines that are portable across Kubernetes distributions.",
"product_ids": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24484"
},
{
"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 Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@amd64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_darwin",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@arm64_windows",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@ppc64le",
"Red Hat OpenShift Pipelines 1.21:serve-tkn-cli-1-21-serve-tkn-cli@s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/tektoncd/pipeline: Tekton Pipelines: Arbitrary code execution and secret exfiltration via malicious git commands"
}
]
}
RHSA-2026:24506
Vulnerability from csaf_redhat - Published: 2026-06-08 14:11 - Updated: 2026-06-29 12: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.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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": "An update for ibu components is available for Red Hat OpenShift Container Platform 4.21.",
"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.\nThis advisory contains the extra ibu container images for Red Hat OpenShift Container Platform 4.21. All OpenShift Container Platform users are advised to upgrade to these updated packages and images.",
"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:24506",
"url": "https://access.redhat.com/errata/RHSA-2026:24506"
},
{
"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_24506.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.21 CNF IBU extras update",
"tracking": {
"current_release_date": "2026-06-29T12:50:50+00:00",
"generator": {
"date": "2026-06-29T12:50:50+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24506",
"initial_release_date": "2026-06-08T14:11:00+00:00",
"revision_history": [
{
"date": "2026-06-08T14:11:00+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-08T14:11:24+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:50+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/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-rhel9-operator@sha256%3A628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator\u0026tag=1780140284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-operator-bundle@sha256%3Aefa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-operator-bundle\u0026tag=1780143403"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"product": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"product_id": "registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"product_identification_helper": {
"purl": "pkg:oci/recert-rhel9@sha256%3A46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/recert-rhel9\u0026tag=1780125376"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-rhel9-operator@sha256%3Aea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator\u0026tag=1780140284"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_arm64",
"product_id": "registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/recert-rhel9@sha256%3A4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/recert-rhel9\u0026tag=1780125376"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_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/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_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/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_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/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_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/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64"
},
"product_reference": "registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.21"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_arm64",
"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/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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-08T14:11:00+00:00",
"details": "For OpenShift Container Platform 4.21, see the following documentation for important instructions about upgrading your cluster and applying this asynchronous errata update:\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.21/html/release_notes/index\nInformation about accessing this content is 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/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24506"
},
{
"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/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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.21:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:efa3c43d1a9d17071d4c9eb7a72ad4bd214d9883f6f3a55dd3d580f61287fae5_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:628d2c96d02f8c4a883184d1b1a52f37be6ac8e77070d91f73dc9f288d2e117f_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:ea81cf0d4b173a2192f666b22f0b3f63de194ab9797bae080fcccef5aa35f80e_arm64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:46f13e24e9bebc355173950f3d372577e0de72bf5696d8e3e8290d04f40b6bde_amd64",
"Red Hat OpenShift Container Platform 4.21:registry.redhat.io/openshift4/recert-rhel9@sha256:4d86beaefb1bd89fc4bcb3476e22f9c7c8fa76bced89ad9fe72e3d893319246a_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:24535
Vulnerability from csaf_redhat - Published: 2026-06-08 17:42 - Updated: 2026-06-29 12: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/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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": "An update for ibu components is available for Red Hat OpenShift Container Platform 4.20.",
"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.\nThis advisory contains the extra ibu container images for Red Hat OpenShift Container Platform 4.20. All OpenShift Container Platform users are advised to upgrade to these updated packages and images.",
"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:24535",
"url": "https://access.redhat.com/errata/RHSA-2026:24535"
},
{
"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_24535.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20 CNF IBU extras update",
"tracking": {
"current_release_date": "2026-06-29T12:50:47+00:00",
"generator": {
"date": "2026-06-29T12:50:47+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24535",
"initial_release_date": "2026-06-08T17:42:25+00:00",
"revision_history": [
{
"date": "2026-06-08T17:42:25+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-08T17:42:45+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:47+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/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-rhel9-operator@sha256%3A47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator\u0026tag=1780036817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-operator-bundle@sha256%3Ad58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-operator-bundle\u0026tag=1780041065"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_amd64",
"product": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_amd64",
"product_id": "registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/recert-rhel9@sha256%3Ad05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/recert-rhel9\u0026tag=1780037474"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"product_id": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/lifecycle-agent-rhel9-operator@sha256%3A0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator\u0026tag=1780036817"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"product_id": "registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/recert-rhel9@sha256%3A7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4/recert-rhel9\u0026tag=1780037474"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_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/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_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/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_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/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_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/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_amd64"
},
"product_reference": "registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_amd64",
"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/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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-08T17:42:25+00:00",
"details": "For OpenShift Container Platform 4.20, see the following documentation for important instructions about upgrading your cluster and applying this asynchronous errata update:\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/index\nInformation about accessing this content is 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/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24535"
},
{
"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/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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.20:registry.redhat.io/openshift4/lifecycle-agent-operator-bundle@sha256:d58fcab5a50f6df010b50ca86346e082ce355f3ac4fa6f8dd1606a0522cbc743_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:0c2894cb04a5cd4fbb0f944c946278a3921b1b9b88e6f82cfcf9d26594b595d1_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/lifecycle-agent-rhel9-operator@sha256:47db1a245c9f18162fb93e9fc9ae6513b7858a151c51bbd0d89b026e55d40f0d_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:7fbd77831e69c22e0c6a2bb310b25cd79fc4eeff30a5721e9ef84809937476c0_arm64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/recert-rhel9@sha256:d05ff0fc7fbf384bfe09e461d0039921295935e26206e7b9ead58eb53086c3db_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:24536
Vulnerability from csaf_redhat - Published: 2026-06-08 17:43 - Updated: 2026-06-29 12: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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — |
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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64 | — |
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: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": "The multicluster engine for Kubernetes 2.10 General Availability release images,\nwhich add new features and enhancements, bug fixes, and updated container images.",
"title": "Topic"
},
{
"category": "general",
"text": "The multicluster engine for Kubernetes v2.10 images\n\nThe multicluster engine for Kubernetes provides the foundational components\nthat are necessary for the centralized management of multiple\nKubernetes-based clusters across data centers, public clouds, and private\nclouds.\n\nYou can use the engine to create new Red Hat OpenShift Container Platform\nclusters or to bring existing Kubernetes-based clusters under management by\nimporting them. After the clusters are managed, you can use the APIs that\nare provided by the engine to distribute configuration based on placement\npolicy.",
"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:24536",
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
},
{
"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-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/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_24536.json"
}
],
"title": "Red Hat Security Advisory: multicluster engine for Kubernetes v2.10.3 security update",
"tracking": {
"current_release_date": "2026-06-29T12:50:47+00:00",
"generator": {
"date": "2026-06-29T12:50:47+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24536",
"initial_release_date": "2026-06-08T17:43:55+00:00",
"revision_history": [
{
"date": "2026-06-08T17:43:55+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-08T17:44:04+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:47+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "multicluster engine for Kubernetes 2.10",
"product": {
"name": "multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_engine:2.10::el9"
}
}
}
],
"category": "product_family",
"name": "multicluster engine for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1780917437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1780917383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3Acf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1780917444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3A17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1780917460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-aws-rhel9@sha256%3A946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9\u0026tag=1780917474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1780877972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"product_id": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/capoa-bootstrap-rhel9@sha256%3A57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9\u0026tag=1780917418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"product_id": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/capoa-control-plane-rhel9@sha256%3A6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9\u0026tag=1780917472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"product_id": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/mce-capi-webhook-config-rhel9@sha256%3A313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9\u0026tag=1780917494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1780917497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3Adae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1780917521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3A20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1780878299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3A21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1780917496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3A9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1780917493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3A6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1780885799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3A4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1780917531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Af17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1780917593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780086588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3A894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1780917601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3A57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1780910688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3Aa01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1780910741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1780910996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3A5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1780678128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1780917648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3Ab38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1780917633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1780917634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3A9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1780917669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3A2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1780917661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3Aaf3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1780917705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1780917699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3Ab8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1780910861"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1780917437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3Aebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1780917383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1780917444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3Afd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1780917460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-aws-rhel9@sha256%3A0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9\u0026tag=1780917474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3Ad3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1780877972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"product_id": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"product_identification_helper": {
"purl": "pkg:oci/capoa-bootstrap-rhel9@sha256%3Aa155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9\u0026tag=1780917418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/capoa-control-plane-rhel9@sha256%3Af8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9\u0026tag=1780917472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"product_id": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/mce-capi-webhook-config-rhel9@sha256%3Abc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9\u0026tag=1780917494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1780917497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1780917521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3Aea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1780878299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3A20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1780917496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3Acedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1780917493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3Ad08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1780885799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3A14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1780917531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Aa05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1780917593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780086588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3A1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1780917601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3A7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1780910688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3A94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1780910741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3Ac9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1780910996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3A011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1780678128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1780917648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1780917633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3Abba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1780917634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3Ae92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1780917669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3A7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1780917661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3Aef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1780917705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3Ae3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1780917699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3A1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1780910861"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1780917437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1780917383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1780917444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3Af4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1780917460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-aws-rhel9@sha256%3Ac06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9\u0026tag=1780917474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3Abd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1780877972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/capoa-bootstrap-rhel9@sha256%3Ace9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9\u0026tag=1780917418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/capoa-control-plane-rhel9@sha256%3A3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9\u0026tag=1780917472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/mce-capi-webhook-config-rhel9@sha256%3A06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9\u0026tag=1780917494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1780917497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1780917521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3A9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1780878299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3Ae6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1780917496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3Ac9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1780917493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3A712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1780885799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3A246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1780917531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3A633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1780917593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780086588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3A929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1780917601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3Af2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1780910688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3A9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1780910741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1780910996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3Adfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1780678128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3A1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1780917648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1780917633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1780917634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3Ab42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1780917669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3Aae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1780917661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3A624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1780917705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1780917699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3A87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1780910861"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"product_id": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/addon-manager-rhel9@sha256%3A1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel9\u0026tag=1780917437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"product_id": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"product_identification_helper": {
"purl": "pkg:oci/must-gather-rhel9@sha256%3A9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel9\u0026tag=1780917383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"product_id": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"product_identification_helper": {
"purl": "pkg:oci/backplane-rhel9-operator@sha256%3A860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/backplane-rhel9-operator\u0026tag=1780917444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-agent-rhel9@sha256%3A3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9\u0026tag=1780917460"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-aws-rhel9@sha256%3Aadc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9\u0026tag=1780917474"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-api-provider-kubevirt-rhel9@sha256%3A31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9\u0026tag=1780877972"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"product_id": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/capoa-bootstrap-rhel9@sha256%3Ac909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9\u0026tag=1780917418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"product_id": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/capoa-control-plane-rhel9@sha256%3A4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9\u0026tag=1780917472"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"product_id": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/mce-capi-webhook-config-rhel9@sha256%3A8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9\u0026tag=1780917494"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-curator-controller-rhel9@sha256%3A7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9\u0026tag=1780917497"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-image-set-controller-rhel9@sha256%3A35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9\u0026tag=1780917521"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-addon-rhel9@sha256%3Abb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9\u0026tag=1780878299"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"product_id": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/cluster-proxy-rhel9@sha256%3A43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel9\u0026tag=1780917496"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"product_id": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clusterclaims-controller-rhel9@sha256%3A9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9\u0026tag=1780917493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"product_id": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clusterlifecycle-state-metrics-rhel9@sha256%3Ae4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9\u0026tag=1780885799"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"product_id": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/console-mce-rhel9@sha256%3A11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel9\u0026tag=1780917531"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"product_id": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/discovery-rhel9@sha256%3Ac6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/discovery-rhel9\u0026tag=1780917593"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hive-rhel9@sha256%3A9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hive-rhel9\u0026tag=1780086588"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-addon-rhel9-operator@sha256%3A350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator\u0026tag=1780917601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-cli-rhel9@sha256%3A03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel9\u0026tag=1780910688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"product_id": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/hypershift-rhel9-operator@sha256%3Ac60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel9-operator\u0026tag=1780910741"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"product_id": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/image-based-install-rhel9@sha256%3A2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/image-based-install-rhel9\u0026tag=1780910996"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"product_id": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/kube-rbac-proxy-mce-rhel9@sha256%3Ac2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9\u0026tag=1780678128"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"product_id": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/managed-serviceaccount-rhel9@sha256%3Ab45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9\u0026tag=1780917648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"product_id": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/managedcluster-import-controller-rhel9@sha256%3A9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9\u0026tag=1780917633"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"product_id": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/multicloud-manager-rhel9@sha256%3A7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel9\u0026tag=1780917634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"product_id": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"product_identification_helper": {
"purl": "pkg:oci/placement-rhel9@sha256%3A0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/placement-rhel9\u0026tag=1780917669"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"product_id": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"product_identification_helper": {
"purl": "pkg:oci/provider-credential-controller-rhel9@sha256%3A2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9\u0026tag=1780917661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"product_id": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"product_identification_helper": {
"purl": "pkg:oci/registration-rhel9@sha256%3A96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/registration-rhel9\u0026tag=1780917705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"product_id": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"product_identification_helper": {
"purl": "pkg:oci/registration-operator-rhel9@sha256%3A7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel9\u0026tag=1780917699"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"product_id": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"product_identification_helper": {
"purl": "pkg:oci/work-rhel9@sha256%3A476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine/work-rhel9\u0026tag=1780910861"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
}
]
},
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
},
{
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
},
{
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
]
}
],
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
]
},
"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-08T17:43:55+00:00",
"details": "For multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24536"
},
{
"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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_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": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:02108938c522fd0b64621faecb7b789902bcdfa18095ac6f262db5287425722a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:1e3edffa1ab72dde13913855a5eada827f7de04060549d2cb4de08db4af50ee6_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:3127d8373af938faf826f0b0aaee3bc639d40982c1b9d9279b5f7dd6d62ed3c6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/addon-manager-rhel9@sha256:6340832d30f05f37955f30ffeed4717c9f63e0bb06f30c226c00eaf4fbf73cbb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:11919013abc01f49a9315142b27276c3110f3f766b701f0db736fa6396830ffa_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:860c1dbd366e7c9776e6db59f905766c484dfdb2a271935b42aaecdd325c7e46_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:90acb9d27d4b505390f1182234749c7982d2eb626b75137d8ddb74da68baccf3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/backplane-rhel9-operator@sha256:cf0c6f868353cf2fa5c14101210395f1bc3e425cd679c93563cde0b7c1abcbf5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:57ca790830627d0cc65dd39c8ee085155a69416d27d893620ff5bead819d4a43_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:a155ada9a64ca2eeae7fb94247971e1a7f69b24bcfdd694d4f06dd1ee6885166_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:c909d39051f07965668870e071022b8693ad542488fe150ff7ec459e77bc5b3f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-bootstrap-rhel9@sha256:ce9582444bc81c6da8f5e729d1a727bf83b7b8c384cf4f65dbd4bbf85a1c9ddf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:3228026c2de0088b511f5bf5d535a99e93d6c6d8e6533ca427a72f0e1fd2bbb0_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:4aa7496bd399acebd5f6e50471d71faaa399d205b322cf883d31644ae6862ad5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:6a8295bfb120d2c1478e724d924a7e35db3172c3c2bf698513e5cbdca96c56c3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/capoa-control-plane-rhel9@sha256:f8003ae8fe5acee35e286a82ab7cf2d77d5baf986a201fabebbe08a06446814a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:17da45d53271be34b0b8abe64d86a7cd91859f1f1941070f18aafd3e490fe402_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:3489f13823781eb79e69f053901d818674acce4ca9aaaab8d82b2fbcdd2ce40f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:f4db53fcef673edf24a3046d011ef8ea33a39d70d1be6afe136f0005f9ab9f44_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel9@sha256:fd6c699a6e9f7fc8a5dfd9dd431f657ec475ca0e9b3bf4abb10e1ae6e30392b3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:0a7301ac13b60f1ceb69494563760ef254a901057f52f6da7d14e6ee01ab8f06_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:946a892db9e65809e79e1a39811114323a74aeea711f5dbe9a7f5517543cda0c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:adc1c08d96fc37745aa52df717a8d411c2e31fae9bc4d316a4e79ad644f06ca7_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel9@sha256:c06e764e683c72ac73b264631822a157ab6a4ab15d276988ef909d88a6ee478b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:31f5f593389d4dfa002120bbe8a72314a4398f62d1940ccfdcab1dad09ade8eb_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:56c5522393ae8cf972351eafd044de93095b48dc6804902da3dc909423071984_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:bd3b80d7d9950a256eca0c7997422383117ad4ad6a4d27f0f155a9b9a7ed4b66_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel9@sha256:d3918aa8bd311220e77444482e389ec885cb2ba34ca30003e113072844f2e87a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:0ddfaa7c34653febeaca2b5101e48776634719f34651cc4f5d2e6292807f34ef_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:21525c56222daec268bed3a5b0ddff8c3871e570e5e007d07ab54ec16ae1f7ff_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:6be69c0122390787d5073a8ff48bf46bc622a144a1846b4e97bcc70de7087255_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel9@sha256:7fbbf6c700b332a1d5248ba76aad4af93f92b244af8032ab41c547d91e1ec4af_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0289ad42dd7ea8bbe92686a70e8cfc623716f12d4f3d94f9f4f652df89bb6f31_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:0b7433f2b7238efb39ff868d4be4e168230fc4530810fcc63baff6ed82e5a9df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:35e55526febd3909fc148ed3ce27b55272484546091f8c87409785423f18db4c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel9@sha256:dae2d656fd6cc8c72b4d53a54cc184954cadc3c431482e0d9df5b279d957e2da_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:20fc0c0e8d60af760b72fd0ead59525c8a54c726c2780eca5e28a8a2a77f745c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:9efc7bec495cfd46839766cdde3006036311210a0c3b9556277592a165e412af_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:bb0b025df36a3d0715d2ae3654f3b8fcb4253474b12b87baf906c293cb423694_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel9@sha256:ea929f8e7ef3e663a24afdd37cf37336c42f62445c63a7d8ea4816fdb181956d_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:20427808b203477efeadde880fea015f05565a537dce76f4d4d2a9a5f1e32627_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:21db79bbba8d795c5e7e2072a60d1bae924e1ca4d6c5bdd2cd44a567f952fdbd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:43d99a9c050ff5001da94c7486add98681f5026813970ba42c33d77e388f9c3a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/cluster-proxy-rhel9@sha256:e6f55d14d230a99cc6f3ed04938342568c0d5b20b72a9388d476b900bfaec465_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9a002015212124aee80aee41f42c80c536e4dfb9378f41c51351ed27f1b5d2de_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:9e6080ac0bc5909cc0f0c0e6f68d4991cb4f6d9ed55bb46b55e4cbaac70e9d62_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:c9f13ed4e04c372e7a9b7c98ee69dff57dd748b0db6cd17f72a9d2f2c28c8d80_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel9@sha256:cedf9668de78bf86fc82052e381bad21f0cd668733580155fae4a241bed9ea4f_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:6af72905281d6c0b588674d5e7449224f4e66bf5c62052468f7136691004a495_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:712f1050e4edfe9c85c885bd840dc3ea26d79e48c0bd93ba5dc737f13d66d038_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:d08803f3661feb6a1c29cac71c19ec3910110cc6bc0ae521db9cc0fb7fdbdded_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel9@sha256:e4733dcd47f842d7c531dde2720fcfbc97b4c7be89091a2c0e825aa46a4d05b5_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:11eeef267146bf55a55b1a8189cba1ce9504612fa3e8a717eeb05d3cc6e159c4_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:14d3c63d947acb950de6142277019794a9824be8005363b99561b114cc39efee_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:246df6e13436d2fd42b7e2fcb65ca2769160336708fcb5dea17e8def1471786d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:4a5b84e14b8d2edb7442577d25cc3ecb015d0701a8c76c4e606a825006aaa992_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:633bec0c2dca634140023043f70a7c89608685e4c70a1dcc8452a030f1258834_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:a05b0c6ebca86f8f2898998e00ac208b626097d18d19af4db58febff31af7342_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:c6220952577319be8b0a88b46fd1f88c1d7367ca90059f2893d7c7f5ada0b5f8_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/discovery-rhel9@sha256:f17cbebbc8cfb5e8c6882e4fc4b3b47f79fcc649ce1924a51f02fc015c0980a6_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:1ff9da14bee513efc6d2baf2791733869c222068f9f06ce7abb557e77f335ea4_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:32be4830dec459e29a963ff47da5b94be6c49fec12660db8ef156d4bd4b938e3_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:3a54a883aec936deec368fd02efc9bf13acfa985ac24a6e917d1796f5a4b3506_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hive-rhel9@sha256:9e21837a70b5410b36ce521978fdb636c044829b03ae3e0b1e48f2bf19c744ee_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:1503af9f2077a3b99feaeee3c5817985a58f4b8dbfb4bf65ee5836f03f37801b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:350cc1976803271d7f1ab5186c3440436bd33fb0357b6a069abe388e15310631_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:894bad18cad7527f24842951211058c56a76351c5b315f2599af6da911d83ec5_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-addon-rhel9-operator@sha256:929f03e0868ddaa5935a876b7d706e07b66cd322a09f9a7a8d04faf7497aa939_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:03354a3fb7ea0f3f8c2deab5bd33811c9bccd361c5e9ccadf1e43590572d2a99_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:57efce9b4e33c105c2170558108167c47c901f8cb14939bf583c01dbffde945b_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:7f12b08e5d8e18337a115dbd09c217e8e9b2ce360ad2aaeebecc13523a01961e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-cli-rhel9@sha256:f2b6947bb13004850ab3356a4d8e6eaa54f3dda4adaa0edd0adecaefef155e24_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:9444be8d5e923c57795a49e5c40035f97dc1a49c9efc8f7e1f475a821c6ce9b1_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:94dbe251a4a94ca3fc365fbaa5a620f154397a9e5c3f7c2ed59627bb9f4be348_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:a01a16252460e2732cfd4452c74bba5ac5e4992da0d262b43a4f4195199fa2fd_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/hypershift-rhel9-operator@sha256:c60e807d81b24e830ead775c915a95bf834ae0e1ea276bd803d9142d8a14454a_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:2d3489522511ca2cebe4eba810afaf0d9513b2ab0da94c4ce425b922ffc4a7cd_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:467b114189865e8ae37ec837d8779c64e6ab96316f00f5a97a3efd42c3c0aefb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:4e205da708cdc0fc797efd59797b9d254877655e28cb274f4abedd8b8addc5fb_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/image-based-install-rhel9@sha256:c9536d4ac9eef0e95b8ad4cfb97ed516aa718520cb689b984e058e16886804e3_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:011265d32584b07371f210e811a0fe16f269443ba11f5a0c07482ac5f4112eef_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:5690951f62fdc433d91ce85e1ad15a93e223bb2491cd20dafad5690425afcb7d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:c2f21fd4262e7f62432e68624c59cd987308145210c65ad59b2a1bd688632b11_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel9@sha256:dfe9467e3b3338f0fa11c9328c73148448b1522d4354d5613eb0fd304ea965df_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:1cc53519a844274b366c95873903bcfb797df4d28283f8bb0c47437277aa8c6c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:402f7a77f60284dc8c5f8aeaaf261d0307b36cd49bc783e73e469d137b02cc2f_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:76e33e55b559e79dcc54f6952d5477f9155cf77075b0da2072dac71a82cf47d5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel9@sha256:b45c8a8e4aa064a2bc20a8a99c3c285e5bb02026ebd4f33f6f306e7f9e3f5a61_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:319b7e418ec81043a0ecd8b8d80cc1106088f85226f14d8ed6c34cb2c501ace4_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:927d3a75d1ae650d16e37c374d3298511bc4adad1156e76c1c5b9d5b2422b547_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:9418732abfb7c053220a239f9c2963aadd99ffe5c3e31c8e838ae6d10e9a260c_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel9@sha256:b38d01a8893c5a89d7b1cf369245927fe45c8347f3ae16f6a1dcfb30a6ea5727_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:06fd9470582b03805353b4a19b6372685aaa535c0a34b22b64c5a9dad81d9d61_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:313a622a4d9f3e180c0f3266bac4641e5bc345932d7470744063c53ecbaa907c_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:8dffafa1ed24d752d74244277257c892d54a75c79a0c828d90e1a069de269f0e_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/mce-capi-webhook-config-rhel9@sha256:bc4b368028cf3483b8d2d2857d855a42c485d4736907e46ef450ce9ee5ba017b_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:21da982d64dc3a75499e3ceb922b052d7b4b3ac4ef6996476037c169cc6f3bbb_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:545710144c3d046c72953c809d67f6d0dbd941565e454d8f4d38bbe6f844a9cf_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:7375848813fbd4f693220aa10b168e2c8e68d8198cc05885c80f73b40a81b02d_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/multicloud-manager-rhel9@sha256:bba4cdfbf8edf96ba4e7e4e7fcd440320eb4e7b3c48ec0430b875e079bbdb2e8_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:12759a58544a80ab10a95c4d00f061fcd57ac1491474c3c0b810e7b759a95874_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:7048c030826df3ea1809a80eaabc9496be31f4cc6a62e9df6c79424683c4d4a1_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:9cf9481d5f27d0ffe9df3acc7e6eddc4931addf420707edd21e82db80cce7c78_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/must-gather-rhel9@sha256:ebf0ba81299fca19d82f4694d3e56c1a1975bf7270b6b21c899fe54ac18599e1_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:0907001fb9738759753c37911174ec4de007108e283abf5edc2489e19ca6fe66_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:9aabc62a38d7be9990f91ab47143001dfff7f187e1bd685111e423e0398ee5be_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:b42a1d3f1155ea93b45343287af83126089271d61f250139ce563261e6a7af4d_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/placement-rhel9@sha256:e92e5c9ac8e247b14582a7394f4e3c3ab80d18ac666ff3f4b32d97222d826b79_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2b878f0cd704ccb74aeac0871ebac4e899616d96aa4c0fedc9d9c64667a5d744_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:2d01152677993b8172dae7ed9180cb4f3b2a99ce7187e54eef2e63a648066fbe_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:7d8f9d5354e879fbdf13fe00eb3a0dc36299aad3de4c6631ac481027e78b932a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/provider-credential-controller-rhel9@sha256:ae31ca3ae8da4371c14e668bcab6cb5de96eb049c9904ba71996461788cb095b_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:07ad9ec2a2c61ccd596afdf195402ae74be2bbc9575acebe869bee40cdea5e91_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:1d8695dd4c795728618b28fd6bc25589cb8c3f24ce860761a75389937e3fcf3a_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:7514b6babb69cebdf20ea5d2308cd11934ec3b2edeb186986ee55c81b096b883_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-operator-rhel9@sha256:e3e43a6f5b5cf99b9125c3e0c4346b6d7178d240ccd007d6c8b7053b1e36310e_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:624c4a25826b987ec256ad1794c49e7cdadf99111be43847127d3a8279aaf137_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:96f974fa9a77ff279f51971da4cf0a232a5fb209cc76674facd03fe0fb03ea68_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:af3dcd5df777d344158266b91105a400baa1c5e575772ccd340d5d0621558288_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/registration-rhel9@sha256:ef262563963d634b178dc924ab7afb029cdc2a069b604dd7c6002a36eb587cf5_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:1d247641787cdd654e839d6834ff969470242658bb6289c0c280dd75c79b03fe_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:476431f486eb43b092c9ff8d47cf54e9267afded2e01d18ff956cb3cec78b293_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:87cad007b3196f50d0f5599162a92ad7673f047796f6d920da5187f3c03404d9_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/work-rhel9@sha256:b8d16c0e8abacd44c4df899278cb673179cdb08f8a43a3dbf3f6060e68e42846_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "axios: Axios: Invisible JSON Response Tampering via Prototype Pollution Gadget"
}
]
}
RHSA-2026:24759
Vulnerability from csaf_redhat - Published: 2026-06-09 09:19 - Updated: 2026-06-29 12: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/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_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": "An update for topology-aware-lifecycle manager is available for Red Hat OpenShift Container Platform 4.20.",
"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.\nThis advisory contains the extra vran topology aware lifecycle manager images for Red Hat OpenShift Container Platform 4.20.\nAll OpenShift Container Platform users are advised to upgrade to these updated packages and images.",
"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:24759",
"url": "https://access.redhat.com/errata/RHSA-2026:24759"
},
{
"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_24759.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.20 CNF vRAN extras topology aware lifecycle manager update",
"tracking": {
"current_release_date": "2026-06-29T12:50:50+00:00",
"generator": {
"date": "2026-06-29T12:50:50+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:24759",
"initial_release_date": "2026-06-09T09:19:12+00:00",
"revision_history": [
{
"date": "2026-06-09T09:19:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-09T09:19:31+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-29T12:50:50+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/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-rhel9-operator@sha256%3A5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator\u0026tag=1780126048"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-aztp-rhel9@sha256%3Afd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9\u0026tag=1780126037"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-operator-bundle@sha256%3Aee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle\u0026tag=1780130933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-precache-rhel9@sha256%3A9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9\u0026tag=1780125998"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"product_id": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/topology-aware-lifecycle-manager-recovery-rhel9@sha256%3A7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9\u0026tag=1780126073"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_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/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_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/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_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/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_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/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.20"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_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/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64"
},
"product_reference": "registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64",
"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/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_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.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_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-09T09:19:12+00:00",
"details": "For OpenShift Container Platform 4.20, see the following documentation for important instructions about upgrading your cluster and applying this asynchronous errata update:\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.20/html/release_notes/index\nInformation about accessing this content is 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/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:24759"
},
{
"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/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_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.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-aztp-rhel9@sha256:fd651cae01a99c16e58c4936870116900f2d16f1f95d4cfae2139c271dcac80f_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-operator-bundle@sha256:ee74e07922888fe52655c24b51644e5def85d0d4189f70b1f50e7090e05d34e7_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-precache-rhel9@sha256:9b7f3a13ea10b760891ac6efafe0dd7cb4a62e0a67d2bb346138dae28897865c_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-recovery-rhel9@sha256:7ac83d1018211a2ed8ed3e041b2c91b19ff3558e0127d94b325d5ec96f93532a_amd64",
"Red Hat OpenShift Container Platform 4.20:registry.redhat.io/openshift4/topology-aware-lifecycle-manager-rhel9-operator@sha256:5748ae075ffdca0e11bf4f522c308e46554fc5f55d7758d7d1b12e9156e35105_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"
}
]
}
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.